diff options
author | fuxiaohei <fuxiaohei@vip.qq.com> | 2014-06-27 21:33:49 +0800 |
---|---|---|
committer | fuxiaohei <fuxiaohei@vip.qq.com> | 2014-06-27 21:33:49 +0800 |
commit | b5ba2bd268b144ae0c878fe17257d8685d92f9cc (patch) | |
tree | cce0b7d9d21df81fa7c7bb4783c4db7c5745de0f /routers/org/org.go | |
parent | 19e910428951135b9a341554dad54a6546d2ad50 (diff) | |
download | gitea-b5ba2bd268b144ae0c878fe17257d8685d92f9cc.tar.gz gitea-b5ba2bd268b144ae0c878fe17257d8685d92f9cc.zip |
add organization team-create page
Diffstat (limited to 'routers/org/org.go')
-rw-r--r-- | routers/org/org.go | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/routers/org/org.go b/routers/org/org.go index 4f57b9a963..c036a8e5dc 100644 --- a/routers/org/org.go +++ b/routers/org/org.go @@ -30,10 +30,6 @@ func Members(ctx *middleware.Context, params martini.Params) { ctx.HTML(200, "org/members") } -func Teams(ctx *middleware.Context, params martini.Params) { - ctx.Data["Title"] = "Organization " + params["org"] + " Teams" - ctx.HTML(200, "org/teams") -} func New(ctx *middleware.Context) { ctx.Data["Title"] = "Create An Organization" |