fix: client secret is optional in implicit flow (#840)

This commit is contained in:
Harshavardhana
2021-06-28 12:49:21 -07:00
committed by GitHub
parent 173c3d43bb
commit 9ec73260c9

View File

@@ -49,7 +49,6 @@ func GetIdpCallbackURL() string {
func IsIdpEnabled() bool {
return GetIdpURL() != "" &&
GetIdpClientID() != "" &&
GetIdpSecret() != "" &&
GetIdpCallbackURL() != ""
}