Files
leadchat/app/views/api/v1/models/_agent.json.jbuilder
Sojan Jose 1d94e65ca8 fix: CSAT reports page failing to load (#3123)
CSAT reports page was failing to load when there is an assigned agent is deleted.
2021-10-01 13:37:52 +05:30

12 lines
465 B
Ruby

# could be nil for a deleted agent hence the safe operator before account id
json.account_id resource.account&.id
json.availability_status resource.availability_status
json.confirmed resource.confirmed?
json.email resource.email
json.available_name resource.available_name
json.id resource.id
json.custom_attributes resource.custom_attributes if resource.custom_attributes.present?
json.name resource.name
json.role resource.role
json.thumbnail resource.avatar_url