We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3673200 commit 22dac0bCopy full SHA for 22dac0b
routers/web/web.go
@@ -374,9 +374,12 @@ func registerRoutes(m *web.Route) {
374
m.Get("/milestones", reqSignIn, reqMilestonesDashboardPageEnabled, user.Milestones)
375
376
// ***** START: User *****
377
+ // Group without signOut required to allow logged-in users to access this route for redirection purposes
378
m.Group("/user", func() {
379
m.Get("/login", auth.SignIn)
380
m.Post("/login", web.Bind(forms.SignInForm{}), auth.SignInPost)
381
+ })
382
+ m.Group("/user", func() {
383
m.Group("", func() {
384
m.Combo("/login/openid").
385
Get(auth.SignInOpenID).
0 commit comments