Fixed issues

This commit is contained in:
mgabdev 2020-12-15 19:44:01 -05:00
parent 75d52c841e
commit d1ff39bb81
2 changed files with 2 additions and 2 deletions

@ -3,7 +3,7 @@
class ManifestsController < EmptyController
def show
render json:{} # InstancePresenter.new, serializer: ManifestSerializer
render json: InstancePresenter.new, serializer: ManifestSerializer
end
end

@ -43,7 +43,7 @@ class PostChatMessageService < BaseService
@chat = ChatMessage.create!(
from_account: @account,
chat_conversation: @chat_conversation,
text: @text
text: @text,
expires_at: @expires_at
)
end