From f7be17a7bc512926caccb83094ca4bf3d1f5baec Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Piotr=20Pi=C4=85tkiewicz?= Date: Wed, 12 Jun 2024 16:00:26 +0200 Subject: [PATCH 1/2] Added missing provider.userSelect property in readMicrosoftGraphOrg method MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Piotr Piątkiewicz --- .changeset/mighty-rocks-join.md | 5 +++++ .../src/processors/MicrosoftGraphOrgReaderProcessor.ts | 1 + 2 files changed, 6 insertions(+) create mode 100644 .changeset/mighty-rocks-join.md diff --git a/.changeset/mighty-rocks-join.md b/.changeset/mighty-rocks-join.md new file mode 100644 index 0000000000..b6d01e2dc5 --- /dev/null +++ b/.changeset/mighty-rocks-join.md @@ -0,0 +1,5 @@ +--- +'@backstage/plugin-catalog-backend-module-msgraph': patch +--- + +Added missing userSelect property in readMicrosoftGraphOrg method diff --git a/plugins/catalog-backend-module-msgraph/src/processors/MicrosoftGraphOrgReaderProcessor.ts b/plugins/catalog-backend-module-msgraph/src/processors/MicrosoftGraphOrgReaderProcessor.ts index c058286cb2..7c65dcee6c 100644 --- a/plugins/catalog-backend-module-msgraph/src/processors/MicrosoftGraphOrgReaderProcessor.ts +++ b/plugins/catalog-backend-module-msgraph/src/processors/MicrosoftGraphOrgReaderProcessor.ts @@ -112,6 +112,7 @@ export class MicrosoftGraphOrgReaderProcessor implements CatalogProcessor { { userExpand: provider.userExpand, userFilter: provider.userFilter, + userSelect: provider.userSelect, loadUserPhotos: provider.loadUserPhotos, userGroupMemberFilter: provider.userGroupMemberFilter, userGroupMemberSearch: provider.userGroupMemberSearch, From 0b1c559c15a09eaa7731c4572a1518743763fd1c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Piotr=20Pi=C4=85tkiewicz?= Date: Wed, 12 Jun 2024 16:29:52 +0200 Subject: [PATCH 2/2] Update .changeset/mighty-rocks-join.md MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Fredrik Adelöw Signed-off-by: Piotr Piątkiewicz --- .changeset/mighty-rocks-join.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.changeset/mighty-rocks-join.md b/.changeset/mighty-rocks-join.md index b6d01e2dc5..5a859faf8c 100644 --- a/.changeset/mighty-rocks-join.md +++ b/.changeset/mighty-rocks-join.md @@ -2,4 +2,4 @@ '@backstage/plugin-catalog-backend-module-msgraph': patch --- -Added missing userSelect property in readMicrosoftGraphOrg method +Added missing `userSelect` property in `readMicrosoftGraphOrg` method