From 44a6a7bbf5639a44d5a912e25b5388689125be47 Mon Sep 17 00:00:00 2001 From: blam Date: Tue, 5 Oct 2021 11:23:07 +0200 Subject: [PATCH] chore: updating config schema for msgraph Signed-off-by: blam --- plugins/catalog-backend-module-msgraph/config.d.ts | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/plugins/catalog-backend-module-msgraph/config.d.ts b/plugins/catalog-backend-module-msgraph/config.d.ts index 9f6a33ee32..c7eb5ae8e4 100644 --- a/plugins/catalog-backend-module-msgraph/config.d.ts +++ b/plugins/catalog-backend-module-msgraph/config.d.ts @@ -73,6 +73,12 @@ export interface Config { * E.g. "securityEnabled eq false and mailEnabled eq true" */ groupFilter?: string; + /** + * The filter to apply to extract users by groups memberships. + * + * E.g. "displayName eq 'Backstage Users'" + */ + userGroupMemberFilter?: string; }>; }; };