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

10 lines
253 B
Text
Raw Normal View History

2021-04-29 06:41:23 +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
json.status org_user.status
end
2021-04-12 04:51:48 +00:00
end