mirror of
https://github.com/lingble/chatwoot.git
synced 2025-10-29 18:22:53 +00:00
10 lines
229 B
Ruby
10 lines
229 B
Ruby
json.payload do
|
|
json.array! @contacts do |contact|
|
|
json.id contact.id
|
|
json.name contact.name
|
|
json.email contact.email
|
|
json.phone_number contact.phone_number
|
|
json.thumbnail contact.avatar.thumb.url
|
|
end
|
|
end
|