From de9b5d768642d96e01ab9576859b17396733b580 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joakim=20J=C3=A4derberg?= Date: Tue, 11 Nov 2025 12:35:27 +0000 Subject: [PATCH] Merged in fix/social-login-scopes (pull request #3126) Set profile_read scope for social login * set profile_read scope Approved-by: Anton Gunnarsson --- apps/partner-sas/auth/scandic/config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/partner-sas/auth/scandic/config.ts b/apps/partner-sas/auth/scandic/config.ts index 671eb2f57..9b1e7b037 100644 --- a/apps/partner-sas/auth/scandic/config.ts +++ b/apps/partner-sas/auth/scandic/config.ts @@ -8,6 +8,6 @@ export const config = { client_secret: env.CURITY_CLIENT_SECRET_USER, redirect_uri: new URL("/api/web/auth/callback/curity", env.PUBLIC_URL).href, acr_values: "urn:com:scandichotels:sas-eb", - scope: "openid profile booking availability availability_whitelabel_get", + scope: "openid profile_read booking availability availability_whitelabel_get", response_type: "code", } as const