summaryrefslogtreecommitdiffstats
path: root/routers/org/org.go
diff options
context:
space:
mode:
Diffstat (limited to 'routers/org/org.go')
-rw-r--r--routers/org/org.go5
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")
+}