make sure units of a team are returned (#6379)

This commit is contained in:
Lanre Adelowo 2019-03-19 22:50:06 +01:00 committed by techknowlogick
parent 359d3ed01d
commit 5c82ef098e
2 changed files with 10 additions and 0 deletions

View file

@ -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)