aboutsummaryrefslogtreecommitdiffstats
path: root/routers/dashboard.go
diff options
context:
space:
mode:
authorFuXiaoHei <fuxiaohei@hexiaz.com>2014-03-06 21:33:17 +0800
committerFuXiaoHei <fuxiaohei@hexiaz.com>2014-03-06 21:33:17 +0800
commit4b912b9ae6e087271c0c98b6e444384555ea3e84 (patch)
tree1b5f0826c82aec2cb03d1f2fd86af2bd8bf69da6 /routers/dashboard.go
parente878bfb80f52c334a18fbf7b18f79359f7d373af (diff)
downloadgitea-4b912b9ae6e087271c0c98b6e444384555ea3e84.tar.gz
gitea-4b912b9ae6e087271c0c98b6e444384555ea3e84.zip
signed-in dashboard and navbar changes
Diffstat (limited to 'routers/dashboard.go')
-rw-r--r--routers/dashboard.go13
1 files changed, 9 insertions, 4 deletions
diff --git a/routers/dashboard.go b/routers/dashboard.go
index 8c370027bc..c154623820 100644
--- a/routers/dashboard.go
+++ b/routers/dashboard.go
@@ -5,11 +5,16 @@
package routers
import (
+ "github.com/gogits/gogs/modules/base"
+ "github.com/gogits/gogs/routers/user"
"github.com/martini-contrib/render"
+ "github.com/martini-contrib/sessions"
)
-func Dashboard(r render.Render) {
- r.HTML(200, "dashboard", map[string]interface{}{
- "Title": "Dashboard",
- })
+func Home(r render.Render, data base.TmplData, session sessions.Session) {
+ if user.IsSignedIn(session) {
+ user.Dashboard(r, data, session)
+ return
+ }
+ r.HTML(200, "home", nil)
}