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

8 lines
158 B
Plaintext
Raw Normal View History

2017-08-25 14:54:32 +08:00
json.teams do
json.collection teams do |team|
json.id team.id
json.name team.name
json.current_team team == current_user.current_team
end
2017-08-03 22:03:15 +08:00
end