774ac47373
* Add conversations API * Add web UI for conversations * Add test for conversations API * Add tests for ConversationAccount * Improve web UI * Rename ConversationAccount to AccountConversation * Remove conversations on block and mute * Change last_status_id to be a denormalization of status_ids * Add optimistic locking
8 lines
257 B
Ruby
8 lines
257 B
Ruby
# frozen_string_literal: true
|
|
|
|
class REST::ConversationSerializer < ActiveModel::Serializer
|
|
attribute :id
|
|
has_many :participant_accounts, key: :accounts, serializer: REST::AccountSerializer
|
|
has_one :last_status, serializer: REST::StatusSerializer
|
|
end
|