1
mirror of https://gitlab.com/commento/commento.git synced 2025-06-30 11:06:37 -04:00

router_static.go: redirect / to login

This commit is contained in:
Adhityaa
2018-06-03 17:09:49 +05:30
parent 11fdecb8cc
commit 31d965bf12

View File

@ -88,5 +88,7 @@ func initStaticRouter(router *mux.Router) error {
}) })
} }
router.HandleFunc("/", redirectLogin)
return nil return nil
} }