Skip to content

Commit

Permalink
Adds configuration for One (fix) (#833)
Browse files Browse the repository at this point in the history
  • Loading branch information
nikos-kitmeridis authored Sep 12, 2024
1 parent 1112893 commit b1ff61a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion fastcrypto-zkp/src/bn254/zk_login.rs
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,9 @@ impl OIDCProvider {
"https://accounts.credenza3.com" => Ok(Self::Credenza3),
"https://oauth2.playtron.one" => Ok(Self::Playtron),
"https://auth.3dos.io" => Ok(Self::Threedos),
"https://https://login.onepassport.onefc.com/de3ee5c1-5644-4113-922d-e8336569a462/v2.0/" => Ok(Self::Onefc),
"https://login.onepassport.onefc.com/de3ee5c1-5644-4113-922d-e8336569a462/v2.0/" => {
Ok(Self::Onefc)
}
iss if match_micrsoft_iss_substring(iss) => Ok(Self::Microsoft),
_ => match parse_aws_iss_substring(iss) {
Ok((region, tenant_id)) => {
Expand Down

0 comments on commit b1ff61a

Please sign in to comment.