Skip to content

Commit

Permalink
Merge pull request #374 from himmelblau-idm/stable-0.8.x_working_redi…
Browse files Browse the repository at this point in the history
…rects

Resolve missed auth code redirect
  • Loading branch information
dmulder authored Feb 21, 2025
2 parents 8544c19 + ba4c65c commit 943be27
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ members = [
resolver = "2"

[workspace.package]
version = "0.8.6"
version = "0.8.7"
authors = [
"David Mulder <[email protected]>"
]
Expand All @@ -40,7 +40,7 @@ tracing-subscriber = "^0.3.17"
tracing = "^0.1.37"
himmelblau_unix_common = { path = "src/common" }
kanidm_unix_common = { path = "src/glue" }
libhimmelblau = { version = "0.5.3" }
libhimmelblau = { version = "0.6.3" }
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 @@ -138,7 +138,7 @@ impl HimmelblauMultiProvider {
.add_gen_domain(&domain, &tenant_id, range)
.map_err(|e| anyhow!("{:?}", e))?;
let authority_url = format!("https://{}/{}", authority_host, tenant_id);
let app = BrokerClientApplication::new(Some(authority_url.as_str()), None, None)
let app = BrokerClientApplication::new(Some(authority_url.as_str()), None, None, None)
.map_err(|e| anyhow!("{:?}", e))?;
let provider = HimmelblauProvider::new(
app,
Expand Down

0 comments on commit 943be27

Please sign in to comment.