diff --git a/controller/handler/config.go b/controller/handler/config.go index 7190d633..c7c62319 100644 --- a/controller/handler/config.go +++ b/controller/handler/config.go @@ -14,7 +14,7 @@ type ConfigHandler struct { func (handler ConfigHandler) ServeHTTP(w http.ResponseWriter, r *http.Request) { hasOIDC := false - isAuthenticated := false // Default to true if no security config is set + isAuthenticated := true // Default to true if no security config is set if handler.securityConfig != nil { hasOIDC = handler.securityConfig.OIDC != nil isAuthenticated = handler.securityConfig.IsAuthenticated(r)