simpleidserver / SimpleIdServer

OpenID, OAuth 2.0, SCIM2.0, UMA2.0, FAPI, CIBA & OPENBANKING Framework for ASP.NET Core
https://simpleidserver.com/
Apache License 2.0
737 stars 99 forks source link

[SCIM] enterprise user displayName not saved when mutability is readOnly #288

Closed danflomin closed 2 years ago

danflomin commented 2 years ago

Hello,

If the mutability of manager.displayName is readOnly, then when I POST a user, the property manager.displayName is not saved.

If I change the mutability to readWrite then it is saved and returned correctly.

simpleidserver commented 2 years ago

Hello,

According to the RFC 7644 section 3.3, attributes whose mutability is "readOnly" SHALL be ignored : https://datatracker.ietf.org/doc/html/rfc7644#section-3.3 The current implementation respects the RFC.

danflomin commented 2 years ago

Thank!