1
0
mirror of https://github.com/go-gitea/gitea.git synced 2024-07-07 13:34:20 -04:00
gitea/routers/dashboard.go

25 lines
515 B
Go
Raw Normal View History

2014-02-12 12:49:46 -05: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 14:54:09 -05:00
import (
2014-03-15 09:17:16 -04:00
"github.com/gogits/gogs/modules/middleware"
"github.com/gogits/gogs/routers/user"
2014-02-12 14:54:09 -05:00
)
2014-03-15 10:34:33 -04:00
func Home(ctx *middleware.Context) {
if ctx.IsSigned {
2014-03-15 09:17:16 -04:00
user.Dashboard(ctx)
2014-03-06 08:33:17 -05:00
return
}
2014-03-15 10:34:33 -04:00
ctx.Data["PageIsHome"] = true
2014-03-20 07:50:26 -04:00
ctx.HTML(200, "home")
2014-02-12 12:49:46 -05:00
}
2014-03-16 03:41:22 -04:00
2014-03-18 18:31:54 -04:00
func Help(ctx *middleware.Context) {
ctx.Data["PageIsHelp"] = true
2014-03-20 07:50:26 -04:00
ctx.HTML(200, "help")
2014-03-16 03:41:22 -04:00
}