set default oidc claims to openid email

This commit is contained in:
DESKTOP-T0O5CDB\DESK-555BD 2025-03-30 11:28:29 -06:00
parent 75c65b4681
commit fc174160e0

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;