File size: 139 Bytes
f5071ca |
1 2 3 4 5 |
json.array! @users do |user|
json.extract! user, :id, :fname, :lname
json.profile_image_url asset_path(user.profile_image_url.url)
end
|
f5071ca |
1 2 3 4 5 |
json.array! @users do |user|
json.extract! user, :id, :fname, :lname
json.profile_image_url asset_path(user.profile_image_url.url)
end
|