Chatwoot/app/views/api/v1/accounts/inboxes/assignable_agents.json.jbuilder
Sojan Jose 4635e5bb44
feat: Assignable agents API (#2131)
`inboxes/id/assignable_agents` returns all users that have permission to a conversation happening in that inbox.
2021-04-20 13:46:20 +05:30

5 lines
141 B
Ruby

json.payload do
json.array! @assignable_agents do |agent|
json.partial! 'api/v1/models/agent.json.jbuilder', resource: agent
end
end