scinote-web/app/views/client_api/teams/index.json.jbuilder

10 lines
262 B
Text
Raw Normal View History

2017-08-25 14:54:32 +08:00
json.teams do
json.collection teams do |team|
2017-08-25 22:07:37 +08:00
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')
2017-08-25 14:54:32 +08:00
end
2017-08-03 22:03:15 +08:00
end