fixed auth middleware

This commit is contained in:
Marco Piovanello
2025-08-31 13:16:36 +02:00
committed by GitHub
parent 9ca7bb9377
commit ccb6bbe3e6

View File

@@ -11,9 +11,11 @@ func ApplyAuthenticationByConfig(next http.Handler) http.Handler {
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
if config.Instance().RequireAuth { if config.Instance().RequireAuth {
Authenticated(next) Authenticated(next)
return
} }
if config.Instance().UseOpenId { if config.Instance().UseOpenId {
openid.Middleware(next) openid.Middleware(next)
return
} }
next.ServeHTTP(w, r) next.ServeHTTP(w, r)
}) })