Skip to content

Commit

Permalink
Merge pull request #148 from himmelblau-idm/dmulder/fix_ConsolidatedT…
Browse files Browse the repository at this point in the history
…elephony

Fix ConsolidatedTelephony MFA method
  • Loading branch information
dmulder authored May 30, 2024
2 parents a636471 + 6f13538 commit b2b4640
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ tracing-subscriber = "^0.3.17"
tracing = "^0.1.37"
himmelblau_unix_common = { path = "src/common" }
kanidm_unix_common = { path = "src/glue" }
msal = { version = "0.2.5" }
msal = { version = "0.2.6" }
clap = { version = "^4.5", features = ["derive", "env"] }
clap_complete = "^4.4.1"
reqwest = { version = "^0.12.2", features = ["json"] }
Expand Down
2 changes: 1 addition & 1 deletion src/common/src/idprovider/himmelblau.rs
Original file line number Diff line number Diff line change
Expand Up @@ -884,7 +884,7 @@ impl IdProvider for HimmelblauProvider {
}
};
match resp.mfa_method.as_str() {
"PhoneAppOTP" | "OneWaySMS" => {
"PhoneAppOTP" | "OneWaySMS" | "ConsolidatedTelephony" => {
let msg = resp.msg.clone();
*cred_handler = AuthCredHandler::MFA {
data: MFAAuthContinueI(resp).into(),
Expand Down

0 comments on commit b2b4640

Please sign in to comment.