summaryrefslogtreecommitdiffstats
path: root/routers/dashboard.go
diff options
context:
space:
mode:
authorslene <vslene@gmail.com>2014-03-15 22:34:33 +0800
committerslene <vslene@gmail.com>2014-03-15 22:34:33 +0800
commitb9e57e41cee83f257caefec76a276dd143cec153 (patch)
treee8cb2c03c2112e5bf38b6c0aa29625ac828ede44 /routers/dashboard.go
parentca86433402463fb423b75d1527407c5203aba5ce (diff)
downloadgitea-b9e57e41cee83f257caefec76a276dd143cec153.tar.gz
gitea-b9e57e41cee83f257caefec76a276dd143cec153.zip
clean code
Diffstat (limited to 'routers/dashboard.go')
-rw-r--r--routers/dashboard.go13
1 files changed, 4 insertions, 9 deletions
diff --git a/routers/dashboard.go b/routers/dashboard.go
index de9378b0fa..cab1662fc3 100644
--- a/routers/dashboard.go
+++ b/routers/dashboard.go
@@ -5,20 +5,15 @@
package routers
import (
- "github.com/martini-contrib/render"
- "github.com/martini-contrib/sessions"
-
- "github.com/gogits/gogs/modules/auth"
- "github.com/gogits/gogs/modules/base"
"github.com/gogits/gogs/modules/middleware"
"github.com/gogits/gogs/routers/user"
)
-func Home(ctx *middleware.Context, r render.Render, data base.TmplData, session sessions.Session) {
- if auth.IsSignedIn(session) {
+func Home(ctx *middleware.Context) {
+ if ctx.IsSigned {
user.Dashboard(ctx)
return
}
- data["PageIsHome"] = true
- r.HTML(200, "home", data)
+ ctx.Data["PageIsHome"] = true
+ ctx.Render.HTML(200, "home", ctx.Data)
}