Browse Source

Make home.tmpl visible with Signin-View enabled (#4040)

Fix #3846
tags/v1.5.0-dev
Fluf 7 years ago committed by techknowlogick
parent
commit
2a9799493a
  1. 2
      routers/routes/routes.go

2
routers/routes/routes.go

@ -168,7 +168,7 @@ func RegisterRoutes(m *macaron.Macaron) {
m.Head("/", func() string {
return ""
})
m.Get("/", ignSignIn, routers.Home)
m.Get("/", routers.Home)
m.Group("/explore", func() {
m.Get("", func(ctx *context.Context) {
ctx.Redirect(setting.AppSubURL + "/explore/repos")

Loading…
Cancel
Save