Fix type of conversation ID in conversations API (#8961)

lolsob-rspec
Eugen Rochko 2018-10-12 01:36:51 +02:00 committed by GitHub
parent 6cd4eaaee7
commit 735a43bdea
1 changed files with 4 additions and 0 deletions

View File

@ -4,4 +4,8 @@ class REST::ConversationSerializer < ActiveModel::Serializer
attribute :id
has_many :participant_accounts, key: :accounts, serializer: REST::AccountSerializer
has_one :last_status, serializer: REST::StatusSerializer
def id
object.id.to_s
end
end