Chatwoot/app/views/api/v1/accounts/conversations/messages/index.json.jbuilder
Tejaswini Chile 54bdb2957f
feat: Add assignee last seen to conversations (#3069)
- Adds assignee last seen attribute to conversations
2021-09-23 20:59:10 +05:30

14 lines
512 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
json.assignee_last_seen_at @conversation.assignee_last_seen_at
end
json.payload do
json.array! @messages do |message|
json.partial! 'api/v1/models/message', message: message
end
end