Fix inconsistent accountEnabled wording across docs and changeset
Consistently use 'accountEnabled === false' everywhere to describe which users are filtered out. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com> Signed-off-by: Fredrik Adelöw <freben@gmail.com>
This commit is contained in:
@@ -2,4 +2,4 @@
|
||||
'@backstage/plugin-catalog-backend-module-msgraph': patch
|
||||
---
|
||||
|
||||
Reverted the server-side `accountEnabled eq true` base filter that was added in v1.51.0, which broke the `userGroupMember` path because the group members endpoint doesn't support `$filter` on that property. Disabled users (`accountEnabled !== true`) are now filtered client-side in both the `/users` and group members paths. The mutual exclusivity checks between `userFilter` and `userGroupMemberFilter`/`userGroupMemberSearch` have been restored.
|
||||
Reverted the server-side `accountEnabled eq true` base filter that was added in v1.51.0, which broke the `userGroupMember` path because the group members endpoint doesn't support `$filter` on that property. Disabled users (`accountEnabled === false`) are now filtered client-side in both the `/users` and group members paths. The mutual exclusivity checks between `userFilter` and `userGroupMemberFilter`/`userGroupMemberSearch` have been restored.
|
||||
|
||||
+4
-4
@@ -60,8 +60,8 @@ export interface Config {
|
||||
|
||||
/**
|
||||
* The filter to apply to extract users. Disabled users
|
||||
* (accountEnabled !== true) are always filtered out client-side
|
||||
* regardless of this setting.
|
||||
* (`accountEnabled === false`) are always filtered out
|
||||
* client-side regardless of this setting.
|
||||
*
|
||||
* E.g. "userType eq 'member'"
|
||||
*/
|
||||
@@ -164,7 +164,7 @@ export interface Config {
|
||||
expand?: string;
|
||||
/**
|
||||
* The filter to apply to extract users.
|
||||
* Disabled users (accountEnabled === false) are always
|
||||
* Disabled users (`accountEnabled === false`) are always
|
||||
* filtered out client-side regardless of this setting.
|
||||
*
|
||||
* E.g. "userType eq 'member'"
|
||||
@@ -299,7 +299,7 @@ export interface Config {
|
||||
expand?: string;
|
||||
/**
|
||||
* The filter to apply to extract users.
|
||||
* Disabled users (accountEnabled === false) are always
|
||||
* Disabled users (`accountEnabled === false`) are always
|
||||
* filtered out client-side regardless of this setting.
|
||||
*
|
||||
* E.g. "userType eq 'member'"
|
||||
|
||||
@@ -61,9 +61,9 @@ export type MicrosoftGraphProviderConfig = {
|
||||
*/
|
||||
clientSecret?: string;
|
||||
/**
|
||||
* The filter to apply to extract users. Disabled users (accountEnabled
|
||||
* !== true) are always filtered out client-side regardless of this
|
||||
* setting.
|
||||
* The filter to apply to extract users. Disabled users
|
||||
* (`accountEnabled === false`) are always filtered out client-side
|
||||
* regardless of this setting.
|
||||
*
|
||||
* E.g. "userType eq 'member'"
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user