Chatwoot/app/views/api/v1/accounts/conversations/messages/index.json.jbuilder
2020-12-25 13:15:01 +05:30

13 lines
447 B
Ruby

json.meta do
json.labels @conversation.label_list
json.additional_attributes @conversation.additional_attributes
json.contact @conversation.contact.push_event_data
json.assignee @conversation.assignee.push_event_data if @conversation.assignee.present?
json.agent_last_seen_at @conversation.agent_last_seen_at
end
json.payload do
json.array! @messages do |message|
json.partial! 'api/v1/models/message', message: message
end
end