Skip to content

Commit

Permalink
Fix scim2/Groups list with count parameter issue
Browse files Browse the repository at this point in the history
  • Loading branch information
sadilchamishka committed Aug 26, 2024
1 parent 49f4097 commit a9f831f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -2962,7 +2962,7 @@ public GroupsGetResponse listGroupsWithGET(Node rootNode, Integer startIndex, In
startIndex = handleStartIndexEqualsNULL(startIndex);
if (sortBy != null || sortOrder != null) {
throw new NotImplementedException("Sorting is not supported");
} else if (startIndex != 1 || count != null) {
} else if (startIndex != 1 && count != null) {
throw new NotImplementedException("Pagination is not supported");
} else if (rootNode != null) {
return filterGroups(rootNode, startIndex, count, sortBy, sortOrder, domainName, requiredAttributes);
Expand Down

0 comments on commit a9f831f

Please sign in to comment.