File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ NEXTAUTH_CLIENT_SECRET="KEYCLOAK_SECRET"
14
14
NEXTAUTH_SECRET = " NEXTAUTH_SECRET"
15
15
NEXTAUTH_ISSUER = " http://localhost:8085/realms/orchestrator"
16
16
NEXTAUTH_WELL_KNOWN_OVERRIDE = " http://localhost:8085/auth/.well-known/openid-configuration"
17
- NEXTATHU_AUTHORIZATION_SCOPE = " openid profile"
17
+ NEXTAUTH_AUTHORIZATION_SCOPE_OVERRIDE = " openid profile"
18
18
NEXTAUTH_URL = http://localhost:3000/api/auth
19
19
20
20
# docker-compose variables
Original file line number Diff line number Diff line change @@ -23,7 +23,9 @@ const wfoProvider: OAuthConfig<WfoUserProfile> = {
23
23
`${ process . env . NEXTAUTH_ISSUER || '' } /.well-known/openid-configuration` ,
24
24
authorization : {
25
25
params : {
26
- scope : process . env . NEXTAUTH_AUTHORIZATION_SCOPE ?? 'openid profile' ,
26
+ scope :
27
+ process . env . NEXTAUTH_AUTHORIZATION_SCOPE_OVERRIDE ??
28
+ 'openid profile' ,
27
29
} ,
28
30
} ,
29
31
idToken : true ,
You can’t perform that action at this time.
0 commit comments