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