Merged in fix/social-login-scopes (pull request #3126)

Set profile_read scope for social login

* set profile_read scope


Approved-by: Anton Gunnarsson
This commit is contained in:
Joakim Jäderberg
2025-11-11 12:35:27 +00:00
parent bc5a606289
commit de9b5d7686

View File

@@ -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