From 7517ea5939108ed993cbbf07f52aed51151c8ad5 Mon Sep 17 00:00:00 2001 From: Richard Mahn Date: Wed, 3 Feb 2021 19:46:39 +0000 Subject: [PATCH] Updates routes --- 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 e98a0e5e27..6dca9c2879 100644 --- a/routers/routes/routes.go +++ b/routers/routes/routes.go @@ -1146,7 +1146,7 @@ func RegisterRoutes(m *macaron.Macaron) { m.Get("/about", dcs.About) m.Group("/catalog", func() { m.Get("", dcs.Catalog) - }, reqSignIn) + }, ignSignIn) m.Group("/api/catalog", func() { apicatalogv4.RegisterRoutes(m) }, handlers...)