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