mirror of
https://github.com/ToolJet/ToolJet
synced 2026-05-05 06:18:34 +00:00
9 lines
242 B
Text
9 lines
242 B
Text
|
|
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
|