fix: DEPRECATION WARNING: Rendering actions with '.' in the name is deprecated (#5560)
fixes the warning: Rendering actions with '.' in the name is deprecated
This commit is contained in:
committed by
GitHub
parent
cd4c1ef27e
commit
bd445216e9
@@ -5,13 +5,13 @@ 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
|
||||
json.partial! 'api/v1/models/contact', formats: [:json], 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
|
||||
json.partial! 'api/v1/models/agent', formats: [:json], resource: resource.assigned_agent
|
||||
end
|
||||
end
|
||||
json.created_at resource.created_at.to_i
|
||||
|
||||
Reference in New Issue
Block a user