ToolJet/app/views/organizations/users.json.jbuilder
2021-04-12 10:21:48 +05:30

8 lines
242 B
Ruby

json.users do
json.array! @org_users do |org_user|
json.id org_user.id
json.name "#{org_user.user.first_name} #{org_user.user.last_name}"
json.email org_user.user.email
json.role org_user.role
end
end