SimpleIdServer
SimpleIdServer
Hello, I'm going to update the SCIM project in order to add the `Source Representation` attribute in all the events. Kind Regards, Thierry H.
Hello, Some changes have been made in the branch "release/2.0.5" in order to return the "representation" in the events. Kind Regards, SimpleIdServer
Hello Dan, The query performance can easily be improved by doing the following modifications. 1. Update your configuration file like this : ``` services.AddScimStoreEF(options => { options.UseSqlServer(Configuration.GetConnectionString("db"), o => {...
Hello, In the current implementation, attributes can be removed by specifying filter in the "path" for example : ``` { "schemas": ["urn:ietf:params:scim:api:messages:2.0:PatchOp"], "Operations":[{ "op":"remove", "path":"members[value eq \"2819c223-7f76-...413861904646\"]" }] } ```...
"Value filtering" is supported in the branch "release/2.0.6".
Hello, The issue should be fixed in the branch **release/2.0.0**, can-you please check if the issue is fixed. Kind regards, SimpleIdServer
Hello, I'm working on a solution to fix this problem. KR, SID
Todo List : * Refactor the class `RepresentationHelper`, don't retrieve the entire representation : **DONE** * Refactor the class `RepresentationReferenceSync`, don't retrieve the entire representation : **DONE** * Update all...
Hello, The logic used to add a member to a group takes too much time because, in the previous version, all the 'members' are retrieved. I have made some modifications...
Hello @danflomin & @gabrielemilan , All the changes have been committed to the release/4.0.4 branch, and the performance has improved. I made an effort to consistently load the minimal subset...