From 22af0375ea1feda33652f0a2ed9e74baf4976f9a Mon Sep 17 00:00:00 2001 From: Thomas Reitz Date: Fri, 13 Mar 2026 07:06:43 +0100 Subject: [PATCH] =?UTF-8?q?feat(core):=20Scopes=20f=C3=BCr=20M365-Integrat?= =?UTF-8?q?ion=20auf=20ReadWrite=20erweitern?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Calendars.ReadWrite + Contacts.ReadWrite (Delegiert) für bidirektionale CRM↔Office365 Synchronisation (Kontakte + Termine). Contacts.ReadWrite neu hinzugefügt. Co-Authored-By: Claude Sonnet 4.6 --- packages/core-service/src/core/auth/sso/entra-id.service.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/packages/core-service/src/core/auth/sso/entra-id.service.ts b/packages/core-service/src/core/auth/sso/entra-id.service.ts index ebca103..d174d30 100644 --- a/packages/core-service/src/core/auth/sso/entra-id.service.ts +++ b/packages/core-service/src/core/auth/sso/entra-id.service.ts @@ -70,7 +70,8 @@ export class EntraIdService implements OnModuleInit { private readonly integrationScopes = [ 'offline_access', 'https://graph.microsoft.com/Mail.Read', - 'https://graph.microsoft.com/Calendars.Read', + 'https://graph.microsoft.com/Calendars.ReadWrite', + 'https://graph.microsoft.com/Contacts.ReadWrite', 'https://graph.microsoft.com/Tasks.ReadWrite', ];