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

17 lines
546 B
Ruby

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
if resource.contact
json.contact do
json.partial! 'api/v1/models/contact.json.jbuilder', resource: resource.contact
end
end
json.conversation_id resource.conversation.display_id
if resource.assigned_agent
json.assigned_agent do
json.partial! 'api/v1/models/agent.json.jbuilder', resource: resource.assigned_agent
end
end
json.created_at resource.created_at.to_i