From 5a51da6f7754741306299541edfe0c539ccd0850 Mon Sep 17 00:00:00 2001 From: Gabriel Testault Date: Tue, 23 Aug 2022 10:27:52 +0200 Subject: [PATCH] fix(catalog-ms-graph): pass expand properties to EntityProvider Signed-off-by: Gabriel Testault --- .../src/processors/MicrosoftGraphOrgEntityProvider.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/plugins/catalog-backend-module-msgraph/src/processors/MicrosoftGraphOrgEntityProvider.ts b/plugins/catalog-backend-module-msgraph/src/processors/MicrosoftGraphOrgEntityProvider.ts index 4c38198b0d..67f3039873 100644 --- a/plugins/catalog-backend-module-msgraph/src/processors/MicrosoftGraphOrgEntityProvider.ts +++ b/plugins/catalog-backend-module-msgraph/src/processors/MicrosoftGraphOrgEntityProvider.ts @@ -282,6 +282,8 @@ export class MicrosoftGraphOrgEntityProvider implements EntityProvider { client, provider.tenantId, { + userExpand: provider.userExpand, + groupExpand: provider.groupExpand, userFilter: provider.userFilter, userGroupMemberFilter: provider.userGroupMemberFilter, userGroupMemberSearch: provider.userGroupMemberSearch,