This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2018-10-07 14:44:58 -07:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class REST::ConversationSerializer < ActiveModel::Serializer
|
2018-10-18 16:47:29 -07:00
|
|
|
attributes :id, :unread
|
|
|
|
|
2018-10-07 14:44:58 -07:00
|
|
|
has_many :participant_accounts, key: :accounts, serializer: REST::AccountSerializer
|
|
|
|
has_one :last_status, serializer: REST::StatusSerializer
|
2018-10-11 16:36:51 -07:00
|
|
|
|
|
|
|
def id
|
|
|
|
object.id.to_s
|
|
|
|
end
|
2018-10-07 14:44:58 -07:00
|
|
|
end
|