From 2a9799493af355a1bff982ce7fe9e73e2964ab64 Mon Sep 17 00:00:00 2001 From: Fluf <36822577+flufmonster@users.noreply.github.com> Date: Thu, 24 May 2018 15:51:28 -0400 Subject: [PATCH] Make home.tmpl visible with Signin-View enabled (#4040) Fix #3846 --- routers/routes/routes.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/routers/routes/routes.go b/routers/routes/routes.go index cb9fbb16a..15b91f159 100644 --- a/routers/routes/routes.go +++ b/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")