diff options
author | fuxiaohei <fuxiaohei@vip.qq.com> | 2014-06-22 21:53:40 +0800 |
---|---|---|
committer | fuxiaohei <fuxiaohei@vip.qq.com> | 2014-06-22 21:53:40 +0800 |
commit | adda10f4a44005880f881bcb9238b74d561f8a1b (patch) | |
tree | 9e247dd21e3e09ff9494ffc3b6fcbf00a615cdf7 /cmd/web.go | |
parent | 514d7e19227555ecd9e38c642d0b7ea63d7883d2 (diff) | |
download | gitea-adda10f4a44005880f881bcb9238b74d561f8a1b.tar.gz gitea-adda10f4a44005880f881bcb9238b74d561f8a1b.zip |
add organization teams page
Diffstat (limited to 'cmd/web.go')
-rw-r--r-- | cmd/web.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cmd/web.go b/cmd/web.go index 30e5b929ac..b2521de968 100644 --- a/cmd/web.go +++ b/cmd/web.go @@ -191,6 +191,7 @@ func runWeb(*cli.Context) { m.Group("/o", func(r martini.Router) { r.Get("/:org", org.Organization) r.Get("/:org/members", org.Members) + r.Get("/:org/teams", org.Teams) }) m.Group("/:username/:reponame", func(r martini.Router) { |