ToolJet/app/views/organizations/users.json.jbuilder

9 lines
242 B
Text
Raw Normal View History

2021-04-12 04:51:48 +00:00
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