2014-02-12 17:49:46 +00:00
|
|
|
// Copyright 2014 The Gogs Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a MIT-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
package routers
|
|
|
|
|
2014-02-12 19:54:09 +00:00
|
|
|
import (
|
2014-03-06 13:33:17 +00:00
|
|
|
"github.com/gogits/gogs/modules/base"
|
|
|
|
"github.com/gogits/gogs/routers/user"
|
2014-02-12 19:54:09 +00:00
|
|
|
"github.com/martini-contrib/render"
|
2014-03-06 13:33:17 +00:00
|
|
|
"github.com/martini-contrib/sessions"
|
2014-02-12 19:54:09 +00:00
|
|
|
)
|
|
|
|
|
2014-03-06 13:33:17 +00:00
|
|
|
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)
|
2014-02-12 17:49:46 +00:00
|
|
|
}
|