summaryrefslogtreecommitdiffstats
path: root/routers
diff options
context:
space:
mode:
Diffstat (limited to 'routers')
-rw-r--r--routers/api/v1/org/team.go5
1 files changed, 5 insertions, 0 deletions
diff --git a/routers/api/v1/org/team.go b/routers/api/v1/org/team.go
index ca3de9f04e..d1b7dfbce8 100644
--- a/routers/api/v1/org/team.go
+++ b/routers/api/v1/org/team.go
@@ -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)