scimgateway 6.1.14 → 6.1.15
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +6 -0
- package/lib/plugin-entra-id.ts +2 -1
- package/package.json +1 -1
package/README.md
CHANGED
package/lib/plugin-entra-id.ts
CHANGED
|
@@ -177,7 +177,8 @@ scimgateway.getUsers = async (baseEntity, getObj, attributes, ctx) => {
|
|
|
177
177
|
// optional - only used when groups are member of users, not default behavior - correspond to getGroupUsers() in versions < 4.x.x
|
|
178
178
|
throw new Error(`${action} error: not supporting groups member of user filtering: ${getObj.rawFilter}`)
|
|
179
179
|
} else if (getObj.operator === 'pr' && getObj.attribute === 'entitlements') { // pr - presence of (only return objects having getObj.attribute)
|
|
180
|
-
path = `/users?$top=${getObj.count}&$count=true
|
|
180
|
+
path = `/users?$top=${getObj.count}&$count=true&$filter=assignedLicenses/$count ne 0&$select=${selectAttributes.join(',')}`
|
|
181
|
+
isExpandManager = false
|
|
181
182
|
} else {
|
|
182
183
|
// optional - simpel filtering
|
|
183
184
|
if (getObj.attribute) {
|
package/package.json
CHANGED