2014-02-12 23:19:46 +05:30
|
|
|
// 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-13 01:24:09 +05:30
|
|
|
import (
|
|
|
|
"github.com/martini-contrib/render"
|
2014-03-06 19:03:17 +05:30
|
|
|
"github.com/martini-contrib/sessions"
|
2014-03-08 02:35:18 +05:30
|
|
|
|
|
|
|
"github.com/gogits/gogs/modules/auth"
|
|
|
|
"github.com/gogits/gogs/modules/base"
|
|
|
|
"github.com/gogits/gogs/routers/user"
|
2014-02-13 01:24:09 +05:30
|
|
|
)
|
|
|
|
|
2014-03-06 19:03:17 +05:30
|
|
|
func Home(r render.Render, data base.TmplData, session sessions.Session) {
|
2014-03-08 02:35:18 +05:30
|
|
|
if auth.IsSignedIn(session) {
|
2014-03-06 19:03:17 +05:30
|
|
|
user.Dashboard(r, data, session)
|
|
|
|
return
|
|
|
|
}
|
2014-03-06 20:44:45 +05:30
|
|
|
data["PageIsHome"] = true
|
|
|
|
r.HTML(200, "home", data)
|
2014-02-12 23:19:46 +05:30
|
|
|
}
|