diff options
author | Unknwon <u@gogs.io> | 2016-03-21 12:53:04 -0400 |
---|---|---|
committer | Unknwon <u@gogs.io> | 2016-03-21 12:53:04 -0400 |
commit | 90e93b1f3a10f2810f7a34024288ae73e64e1098 (patch) | |
tree | ce81e7abe40f35a175cc8fe5b866e89d2cf9d232 /routers/api/v1/org/team.go | |
parent | e6f927f61af927156798390e64f17dd6755697e7 (diff) | |
download | gitea-90e93b1f3a10f2810f7a34024288ae73e64e1098.tar.gz gitea-90e93b1f3a10f2810f7a34024288ae73e64e1098.zip |
Change list teams API to non-admin specific
Diffstat (limited to 'routers/api/v1/org/team.go')
-rw-r--r-- | routers/api/v1/org/team.go | 31 |
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) +} |