diff options
author | FuXiaoHei <fuxiaohei@hexiaz.com> | 2014-03-06 21:33:17 +0800 |
---|---|---|
committer | FuXiaoHei <fuxiaohei@hexiaz.com> | 2014-03-06 21:33:17 +0800 |
commit | 4b912b9ae6e087271c0c98b6e444384555ea3e84 (patch) | |
tree | 1b5f0826c82aec2cb03d1f2fd86af2bd8bf69da6 /routers/dashboard.go | |
parent | e878bfb80f52c334a18fbf7b18f79359f7d373af (diff) | |
download | gitea-4b912b9ae6e087271c0c98b6e444384555ea3e84.tar.gz gitea-4b912b9ae6e087271c0c98b6e444384555ea3e84.zip |
signed-in dashboard and navbar changes
Diffstat (limited to 'routers/dashboard.go')
-rw-r--r-- | routers/dashboard.go | 13 |
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) } |