Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -290,6 +290,7 @@ private static URI getAuthRequestURI(OIDCProviderMetadata oidcProviderMetadata,
.endpointURI(authorizationEndpoint)
.redirectionURI(redirectURI)
.customParameter("audience", audience.getScheme() + "://" + audience.getHost() + audiencePort)
.customParameter("prompt", "select_account")
.state(state)
.scope(scope) // Add any other required scopes
.codeChallenge(codeVerifier, CodeChallengeMethod.S256)
Expand Down
3 changes: 2 additions & 1 deletion webapp-ng/src/app/app.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,8 @@ export function apiConfigFactory() {
authorizationParams: {
scope: 'openid profile email offline_access',
audience: env.auth.authorizationParams.audience,
redirect_uri: window.location.origin
redirect_uri: window.location.origin,
prompt: "select_account"
},
errorPath: auth_config.errorPath,
httpInterceptor: {
Expand Down