Skip to content

Commit

Permalink
Allow redirects to every valid redirect uri
Browse files Browse the repository at this point in the history
  • Loading branch information
Threated committed Dec 7, 2023
1 parent 967d25f commit 17ac215
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions central/src/keycloak.rs
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,7 @@ fn generate_client(name: &str, oidc_client_config: &OIDCConfig, secret: &str) ->
"id": id,
"clientId": id,
"redirectUris": oidc_client_config.redirect_urls,
"webOrigins": ["+"], // Will allow all hosts that are named in redirectUris. This is not the same as '*'
"publicClient": oidc_client_config.is_public,
"serviceAccountsEnabled": !oidc_client_config.is_public,
"defaultClientScopes": [
Expand Down

0 comments on commit 17ac215

Please sign in to comment.