fix: update inbox details for text search json

This commit is contained in:
Tejaswini Chile 2022-12-19 13:35:53 +05:30
parent 3447b56b18
commit 5bb4c12e6b

View file

@ -3,7 +3,7 @@ json.payload do
json.array! @result[:conversations] do |conversation|
json.partial! 'api/v1/models/conversation', formats: [:json], conversation: conversation
json.agent do
json.partial! 'api/v1/models/agent', formats: [:json], resource: conversation.assignee if conversation.assignee.present?
json.partial! 'api/v1/models/agent', formats: [:json], resource: conversation.assignee if conversation.try(:assignee).present?
end
end
end
@ -18,7 +18,7 @@ json.payload do
json.array! @result[:messages] do |message|
json.partial! 'api/v1/models/message', formats: [:json], message: message
json.agent do
json.partial! 'api/v1/models/agent', formats: [:json], resource: message.conversation.assignee if message.conversation.assignee.present?
json.partial! 'api/v1/models/agent', formats: [:json], resource: message.conversation.assignee if message.conversation.try(:assignee).present?
end
json.inbox do
if message.inbox.present?