Specify scope, or fallback to sensible

This commit is contained in:
Alicia Sykes 2024-08-17 15:31:20 +01:00 committed by GitHub
parent ce89f1dd9d
commit 439c73c89f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -20,7 +20,7 @@ class OidcAuth {
client_id: clientId,
redirect_uri: `${window.location.origin}`,
response_type: 'code',
scope,
scope: scope || 'openid profile email roles groups',
response_mode: 'query',
filterProtocolClaims: true,
};