Browse Source

Show SSO_ALLOW_UNKNOWN_EMAIL_VERIFICATION in admin (#6235)

pull/6160/head
Timshel 3 days ago
committed by GitHub
parent
commit
3510351f4d
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 2
      src/config.rs

2
src/config.rs

@ -697,7 +697,7 @@ make_config! {
/// Allow email association |> Associate existing non-SSO user based on email
sso_signups_match_email: bool, true, def, true;
/// Allow unknown email verification status |> Allowing this with `SSO_SIGNUPS_MATCH_EMAIL=true` open potential account takeover.
sso_allow_unknown_email_verification: bool, false, def, false;
sso_allow_unknown_email_verification: bool, true, def, false;
/// Client ID
sso_client_id: String, true, def, String::new();
/// Client Key

Loading…
Cancel
Save