Chatwoot/app/views/api/v1/models/_csat_survey_response.json.jbuilder

18 lines
554 B
Text
Raw Normal View History

json.id resource.id
json.rating resource.rating
json.feedback_message resource.feedback_message
json.account_id resource.account_id
json.message_id resource.message_id
2021-07-14 04:50:06 +00:00
if resource.contact
json.contact do
json.partial! 'api/v1/models/contact', formats: [:json], resource: resource.contact
2021-07-14 04:50:06 +00:00
end
end
json.conversation_id resource.conversation.display_id
2021-07-14 04:50:06 +00:00
if resource.assigned_agent
json.assigned_agent do
json.partial! 'api/v1/models/agent', formats: [:json], resource: resource.assigned_agent
2021-07-14 04:50:06 +00:00
end
end
json.created_at resource.created_at.to_i