diff options
author | fuxiaohei <fuxiaohei@vip.qq.com> | 2014-06-23 19:11:20 +0800 |
---|---|---|
committer | fuxiaohei <fuxiaohei@vip.qq.com> | 2014-06-23 19:11:20 +0800 |
commit | fb53cc4fa82bbbbba4b8b0281d5f5657b1a6fafc (patch) | |
tree | 0bcf6cdae0be51b7c5cadb38b04d3c48ba8f9253 /routers/org | |
parent | f393dc652007238c27bd5d1954a03ba97412eee5 (diff) | |
download | gitea-fb53cc4fa82bbbbba4b8b0281d5f5657b1a6fafc.tar.gz gitea-fb53cc4fa82bbbbba4b8b0281d5f5657b1a6fafc.zip |
add organization setting page
Diffstat (limited to 'routers/org')
-rw-r--r-- | routers/org/org.go | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/routers/org/org.go b/routers/org/org.go index 8073d10b8e..ff97402ebc 100644 --- a/routers/org/org.go +++ b/routers/org/org.go @@ -29,3 +29,8 @@ func Dashboard(ctx *middleware.Context, params martini.Params) { ctx.Data["Title"] = "Dashboard" ctx.HTML(200, "org/dashboard") } + +func Setting(ctx *middleware.Context, param martini.Params) { + ctx.Data["Title"] = "Setting" + ctx.HTML(200, "org/setting") +} |