2018-10-07 17:44:58 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class REST::ConversationSerializer < ActiveModel::Serializer
|
2018-10-18 19:47:29 -04:00
|
|
|
attributes :id, :unread
|
|
|
|
|
2018-10-07 17:44:58 -04:00
|
|
|
has_many :participant_accounts, key: :accounts, serializer: REST::AccountSerializer
|
|
|
|
has_one :last_status, serializer: REST::StatusSerializer
|
2018-10-11 19:36:51 -04:00
|
|
|
|
|
|
|
def id
|
|
|
|
object.id.to_s
|
|
|
|
end
|
2018-10-07 17:44:58 -04:00
|
|
|
end
|