Merge pull request #903 from hargata/Hargata/oidc.check.claims

set default oidc claims to openid email
This commit is contained in:
Hargata Softworks
2025-03-30 11:30:16 -06:00
committed by GitHub

View File

@@ -8,7 +8,7 @@
public string AuthURL { get; set; }
public string TokenURL { get; set; }
public string RedirectURL { get; set; }
public string Scope { get; set; }
public string Scope { get; set; } = "openid email";
public string State { get; set; }
public string CodeChallenge { get; set; }
public bool ValidateState { get; set; } = false;