From 9ec73260c9fcc7f61579cba88f80c9ee73b5381c Mon Sep 17 00:00:00 2001 From: Harshavardhana Date: Mon, 28 Jun 2021 12:49:21 -0700 Subject: [PATCH] fix: client secret is optional in implicit flow (#840) --- pkg/auth/idp/oauth2/config.go | 1 - 1 file changed, 1 deletion(-) diff --git a/pkg/auth/idp/oauth2/config.go b/pkg/auth/idp/oauth2/config.go index 4547faec8..96a8b62f7 100644 --- a/pkg/auth/idp/oauth2/config.go +++ b/pkg/auth/idp/oauth2/config.go @@ -49,7 +49,6 @@ func GetIdpCallbackURL() string { func IsIdpEnabled() bool { return GetIdpURL() != "" && GetIdpClientID() != "" && - GetIdpSecret() != "" && GetIdpCallbackURL() != "" }