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

12 lines
368 B
Plaintext
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 retrive_role_name(team.fetch('role') { nil })
2017-08-25 22:07:37 +08:00
json.current_team team.fetch('current_team')
json.can_be_leaved team.fetch('can_be_leaved')
2017-09-01 23:10:43 +08:00
json.user_team_id team.fetch('user_team_id')
2017-08-25 14:54:32 +08:00
end
2017-08-03 22:03:15 +08:00
end