From 339e00dedffaac64f77436d41658f3eb1f479bd4 Mon Sep 17 00:00:00 2001 From: Scott Wilson Date: Mon, 20 Oct 2025 16:08:36 -0700 Subject: [PATCH] fix: correct org permission check in scim service --- backend/src/ee/services/scim/scim-service.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/backend/src/ee/services/scim/scim-service.ts b/backend/src/ee/services/scim/scim-service.ts index e3a6d5e7e..4c5ee04a3 100644 --- a/backend/src/ee/services/scim/scim-service.ts +++ b/backend/src/ee/services/scim/scim-service.ts @@ -130,7 +130,7 @@ export const scimServiceFactory = ({ scope: OrganizationActionScope.ParentOrganization, actor, actorId, - orgId: actorOrgId, + orgId, actorAuthMethod, actorOrgId }); @@ -172,7 +172,7 @@ export const scimServiceFactory = ({ scope: OrganizationActionScope.ParentOrganization, actor, actorId, - orgId: actorOrgId, + orgId, actorAuthMethod, actorOrgId });