summaryrefslogtreecommitdiffstats
path: root/routers/api/v1/org/team.go
diff options
context:
space:
mode:
Diffstat (limited to 'routers/api/v1/org/team.go')
-rw-r--r--routers/api/v1/org/team.go31
1 files changed, 31 insertions, 0 deletions
diff --git a/routers/api/v1/org/team.go b/routers/api/v1/org/team.go
new file mode 100644
index 0000000000..fad0d2f703
--- /dev/null
+++ b/routers/api/v1/org/team.go
@@ -0,0 +1,31 @@
+// Copyright 2016 The Gogs Authors. All rights reserved.
+// Use of this source code is governed by a MIT-style
+// license that can be found in the LICENSE file.
+
+package org
+
+import (
+ api "github.com/gogits/go-gogs-client"
+
+ "github.com/gogits/gogs/modules/context"
+ "github.com/gogits/gogs/routers/api/v1/convert"
+ "github.com/gogits/gogs/routers/api/v1/user"
+)
+
+func ListTeams(ctx *context.APIContext) {
+ org := user.GetUserByParamsName(ctx, ":orgname")
+ if ctx.Written() {
+ return
+ }
+
+ if err := org.GetTeams(); err != nil {
+ ctx.Error(500, "GetTeams", err)
+ return
+ }
+
+ apiTeams := make([]*api.Team, len(org.Teams))
+ for i := range org.Teams {
+ apiTeams[i] = convert.ToTeam(org.Teams[i])
+ }
+ ctx.JSON(200, apiTeams)
+}