From 1e3ee833dc208766569ead510627be1753ce45ca Mon Sep 17 00:00:00 2001 From: blam Date: Wed, 27 Nov 2024 13:30:21 +0100 Subject: [PATCH] chore: include the requested scopes in the auth handler for google Signed-off-by: blam --- plugins/auth-backend-module-google-provider/src/authenticator.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/plugins/auth-backend-module-google-provider/src/authenticator.ts b/plugins/auth-backend-module-google-provider/src/authenticator.ts index 9f1e298ae8..b0c58b777b 100644 --- a/plugins/auth-backend-module-google-provider/src/authenticator.ts +++ b/plugins/auth-backend-module-google-provider/src/authenticator.ts @@ -73,6 +73,7 @@ export const googleAuthenticator = createOAuthAuthenticator({ return helper.start(input, { accessType: 'offline', prompt: 'consent', + includeGrantedScopes: 'true', }); },