Skip to content
New issue

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

Enable SCIM2 Group based User Filtering Improvements by Default #5830

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -1011,9 +1011,9 @@
It determines the totalResults based on the total user count corresponding to the given group-based filter.
Additionally, when invoking the user endpoint with a groups filter by passing a role (hybrid or system roles),
it returns an empty list when role group separation is enabled, instead of returning users linked to the passed role.
Default value : false
Default value : true
-->
<!--<EnableGroupBasedUserFilteringImprovements>false</EnableGroupBasedUserFilteringImprovements>-->
<!--<EnableGroupBasedUserFilteringImprovements>true</EnableGroupBasedUserFilteringImprovements>-->

</SCIM2>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1478,7 +1478,7 @@
It determines the totalResults based on the total user count corresponding to the given group-based filter.
Additionally, when invoking the user endpoint with a groups filter by passing a role (hybrid or system roles),
it returns an empty list when role group separation is enabled, instead of returning users linked to the passed role.
Default value : false
Default value : true
-->
<EnableGroupBasedUserFilteringImprovements>{{scim2.enable_group_based_user_filter_improvements}}</EnableGroupBasedUserFilteringImprovements>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -356,7 +356,7 @@
"scim2.endpoints.groups_endpoint": "$ref{server.base_path}/scim2/Groups",
"scim2.enable_complex_multivalued_attribute_support": false,
"scim2.enable_filtering_enhancements": false,
"scim2.enable_group_based_user_filter_improvements": false,
"scim2.enable_group_based_user_filter_improvements": true,
"scim2.notify_userstore_status": false,
"scim2.filter_users_and_groups_from_primary_domain": false,
"scim2.mandate_domain_for_uesrnames_and_group_names_in_response": false,
Expand Down
Loading