summaryrefslogtreecommitdiffstats
path: root/routers/dashboard.go
diff options
context:
space:
mode:
Diffstat (limited to 'routers/dashboard.go')
-rw-r--r--routers/dashboard.go7
1 files changed, 6 insertions, 1 deletions
diff --git a/routers/dashboard.go b/routers/dashboard.go
index 438d03794b..d65c403c5f 100644
--- a/routers/dashboard.go
+++ b/routers/dashboard.go
@@ -6,11 +6,16 @@ package routers
import (
"github.com/gogits/gogs/models"
+ "github.com/gogits/gogs/modules/base"
"github.com/gogits/gogs/modules/middleware"
"github.com/gogits/gogs/modules/setting"
"github.com/gogits/gogs/routers/user"
)
+const (
+ HOME base.TplName = "home"
+)
+
func Home(ctx *middleware.Context) {
if ctx.IsSigned {
user.Dashboard(ctx)
@@ -40,7 +45,7 @@ func Home(ctx *middleware.Context) {
}
}
ctx.Data["Repos"] = repos
- ctx.HTML(200, "home")
+ ctx.HTML(200, HOME)
}
func NotFound(ctx *middleware.Context) {