scinote-web/app/views/client_api/teams/index.json.jbuilder
2017-08-25 16:07:37 +02:00

9 lines
262 B
Ruby

json.teams do
json.collection teams do |team|
json.id team.fetch('id')
json.name team.fetch('name')
json.members team.fetch('members')
json.role UserTeam.roles.keys[team.fetch('role')]
json.current_team team.fetch('current_team')
end
end