gitea/routers/dashboard.go

32 lines
686 B
Go
Raw Normal View History

2014-02-13 04:49:46 +11: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-13 06:54:09 +11:00
import (
2014-03-16 00:17:16 +11:00
"github.com/gogits/gogs/modules/middleware"
"github.com/gogits/gogs/routers/user"
2014-02-13 06:54:09 +11:00
)
2014-03-16 01:34:33 +11:00
func Home(ctx *middleware.Context) {
if ctx.IsSigned {
2014-03-16 00:17:16 +11:00
user.Dashboard(ctx)
2014-03-07 00:33:17 +11:00
return
}
2014-03-16 01:34:33 +11:00
ctx.Data["PageIsHome"] = true
2014-03-20 22:50:26 +11:00
ctx.HTML(200, "home")
2014-02-13 04:49:46 +11:00
}
2014-03-16 18:41:22 +11:00
2014-03-19 09:31:54 +11:00
func Help(ctx *middleware.Context) {
ctx.Data["PageIsHelp"] = true
2014-03-23 16:48:01 +11:00
ctx.Data["Title"] = "Help"
2014-03-20 22:50:26 +11:00
ctx.HTML(200, "help")
2014-03-16 18:41:22 +11:00
}
2014-03-23 16:48:01 +11:00
func NotFound(ctx *middleware.Context) {
ctx.Data["PageIsNotFound"] = true
ctx.Data["Title"] = 404
ctx.Handle(404, "home.NotFound", nil)
}