fix(oidc): Default isAuthenticated to true, not false

This commit is contained in:
TwiN 2022-01-02 21:37:15 -05:00
parent 0e022d04b1
commit 10949b11f4

View File

@ -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)