Chatwoot/app/views/api/v1/widget/inbox_members/index.json.jbuilder
Nithin David Thomas 83b0bb4062
Feature: As an end-user, I should be able to see the list of agents in the widget. (#461)
Co-authored-by: Pranav Raj S <pranavrajs@gmail.com>
2020-02-05 11:27:22 +05:30

8 lines
259 B
Ruby

json.payload do
json.array! @inbox_members do |inbox_member|
json.id inbox_member.user.id
json.name inbox_member.user.name
json.avatar_url inbox_member.user.avatar_url
json.availability_status inbox_member.user.availability_status
end
end