mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-01-09 00:49:07 +08:00
9 lines
262 B
Ruby
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
|