gitea/routers/dashboard.go

24 lines
513 B
Go
Raw Normal View History

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