forgejo-federation/routers/dashboard.go

20 lines
438 B
Go
Raw Normal View History

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 (
2014-03-15 18:47:16 +05:30
"github.com/gogits/gogs/modules/middleware"
"github.com/gogits/gogs/routers/user"
2014-02-13 01:24:09 +05:30
)
2014-03-15 20:04:33 +05:30
func Home(ctx *middleware.Context) {
if ctx.IsSigned {
2014-03-15 18:47:16 +05:30
user.Dashboard(ctx)
2014-03-06 19:03:17 +05:30
return
}
2014-03-15 20:04:33 +05:30
ctx.Data["PageIsHome"] = true
ctx.Render.HTML(200, "home", ctx.Data)
2014-02-12 23:19:46 +05:30
}