Chatwoot/app/views/api/v1/inboxes/index.json.jbuilder

16 lines
327 B
Text
Raw Normal View History

json.data do
json.meta do
end
json.payload do
json.array! @inboxes do |inbox|
json.id inbox.id
json.channel_id inbox.channel_id
json.name inbox.name
json.channel_type inbox.channel_type
json.avatar_url inbox.channel.avatar.url
json.page_id inbox.channel.page_id
end
end
end