We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Currently filtering by user emails without property doesn't work. It be appended with .value to work properly.
.value
See: https://tools.ietf.org/html/rfc7644#section-3.4.4.2 RFC Example: userType eq "Employee" and (emails co "example.com" or emails.value co "example.org")
userType eq "Employee" and (emails co "example.com" or emails.value co "example.org")
Or simply: emails co \"example.com\"
emails co \"example.com\"
Tests found here:
SimpleIdServer/tests/SimpleIdServer.Scim.Tests/FilterFixture.cs
Line 12 in 0d5ca54
The text was updated successfully, but these errors were encountered:
The issue has been moved to the next release
Sorry, something went wrong.
Ticket #10 #11 #12 : Allows quotes + supports mails value filtering w…
9455753
…ithout value property + correctly parse grouping filter + add license header
The bug is fixed in branch release/1.0.4
No branches or pull requests
Currently filtering by user emails without property doesn't work. It be appended with
.value
to work properly.See: https://tools.ietf.org/html/rfc7644#section-3.4.4.2
RFC Example:
userType eq "Employee" and (emails co "example.com" or emails.value co "example.org")
Or simply:
emails co \"example.com\"
Tests found here:
SimpleIdServer/tests/SimpleIdServer.Scim.Tests/FilterFixture.cs
Line 12 in 0d5ca54
The text was updated successfully, but these errors were encountered: