fix #2804
This commit is contained in:
parent
263304b6b7
commit
f76d821bda
|
@ -194,6 +194,9 @@ func runWeb(ctx *cli.Context) {
|
||||||
// Routers.
|
// Routers.
|
||||||
m.Get("/", ignSignIn, routers.Home)
|
m.Get("/", ignSignIn, routers.Home)
|
||||||
m.Group("/explore", func() {
|
m.Group("/explore", func() {
|
||||||
|
m.Get("", func(ctx *context.Context) {
|
||||||
|
ctx.Redirect(setting.AppSubUrl + "/explore/repos")
|
||||||
|
})
|
||||||
m.Get("/repos", routers.ExploreRepos)
|
m.Get("/repos", routers.ExploreRepos)
|
||||||
m.Get("/users", routers.ExploreUsers)
|
m.Get("/users", routers.ExploreUsers)
|
||||||
}, ignSignIn)
|
}, ignSignIn)
|
||||||
|
|
|
@ -39,7 +39,7 @@ type Release struct {
|
||||||
}
|
}
|
||||||
|
|
||||||
func (r *Release) BeforeInsert() {
|
func (r *Release) BeforeInsert() {
|
||||||
r.CreatedUnix = r.Created.UTC().Unix()
|
r.CreatedUnix = time.Now().UTC().Unix()
|
||||||
}
|
}
|
||||||
|
|
||||||
func (r *Release) AfterSet(colName string, _ xorm.Cell) {
|
func (r *Release) AfterSet(colName string, _ xorm.Cell) {
|
||||||
|
|
Loading…
Reference in New Issue