5c3de5e095
* feat: Sort by name * feat: Fetch labels from sidebar * Remove unused language file * Add beta tag to contacts * Add timeMixin, reduce font-size * Remove unused methods * Remove unused prop * Disabled footer if no contacts or invalid page * Add keyup for input * Fix conversation not loading if there are no active conversations * return last_seen_at as unix time * Fix contact edit modal * Add loader for edit contact button * Fix review comments
19 lines
814 B
Ruby
19 lines
814 B
Ruby
json.additional_attributes resource.additional_attributes
|
|
json.availability_status resource.availability_status
|
|
json.email resource.email
|
|
json.id resource.id
|
|
json.name resource.name
|
|
json.phone_number resource.phone_number
|
|
json.thumbnail resource.avatar_url
|
|
json.custom_attributes resource.custom_attributes
|
|
json.conversations_count resource.conversations_count if resource[:conversations_count].present?
|
|
json.last_seen_at resource.last_seen_at.to_i if resource[:last_seen_at].present?
|
|
|
|
# we only want to output contact inbox when its /contacts endpoints
|
|
if defined?(with_contact_inboxes) && with_contact_inboxes.present?
|
|
json.contact_inboxes do
|
|
json.array! resource.contact_inboxes do |contact_inbox|
|
|
json.partial! 'api/v1/models/contact_inbox.json.jbuilder', resource: contact_inbox
|
|
end
|
|
end
|
|
end
|