Skip to content

Commit

Permalink
fix: Keycloak url base
Browse files Browse the repository at this point in the history
  • Loading branch information
PrincipeAgustin authored May 31, 2024
1 parent f81a02f commit 0c480e0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/services/auth.ts
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ export function vueAuth(config) {
name: 'Keycloak',
url: '/auth/keycloak',
clientId: config.client_id,
authorizationEndpoint: `${config.keycloak_url}/auth/realms/${config.keycloak_realm}/protocol/openid-connect/auth`,
authorizationEndpoint: `${config.keycloak_url}/realms/${config.keycloak_realm}/protocol/openid-connect/auth`,
redirectUri: getRedirectUri(basePath),
requiredUrlParams: ['scope'],
optionalUrlParams: ['display', 'state'],
Expand Down

0 comments on commit 0c480e0

Please sign in to comment.