make sure units of a team are returned (#6379)
This commit is contained in:
parent
359d3ed01d
commit
5c82ef098e
2 changed files with 10 additions and 0 deletions
|
@ -38,6 +38,11 @@ func ListTeams(ctx *context.APIContext) {
|
|||
|
||||
apiTeams := make([]*api.Team, len(org.Teams))
|
||||
for i := range org.Teams {
|
||||
if err := org.Teams[i].GetUnits(); err != nil {
|
||||
ctx.Error(500, "GetUnits", err)
|
||||
return
|
||||
}
|
||||
|
||||
apiTeams[i] = convert.ToTeam(org.Teams[i])
|
||||
}
|
||||
ctx.JSON(200, apiTeams)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue