mirror of
https://github.com/go-gitea/gitea
synced 2025-07-22 18:28:37 +00:00
make sure units of a team are returned (#6379)
This commit is contained in:
committed by
techknowlogick
parent
359d3ed01d
commit
5c82ef098e
@@ -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)
|
||||
|
Reference in New Issue
Block a user