kjthorpe18 commented on issue #436:
URL:
https://github.com/apache/directory-scimple/issues/436#issuecomment-1849105074
Also, this needs to handle removing members by _only_ their specified
`value`, without specifying other information such as `display`. For example,
in the `source` items we may have:
```json
{
"value": "aaebb169-b91d-481c-9957-097faeaf649a",
"display": "bjensen",
"type": "User"
}
```
and should be able to remove with the operation
```json
{
"schemas":[
"urn:ietf:params:scim:api:messages:2.0:PatchOp"
],
"Operations":[
{
"op":"remove",
"path":"members",
"value":[
{
"value":"aaebb169-b91d-481c-9957-097faeaf649a"
}
]
}
]
}
```
which corresponds to a `value` in the PatchHandler of just
```json
{
"value": "aaebb169-b91d-481c-9957-097faeaf649a"
}
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]