Skip to content

Commit

Permalink
SAK-40857: DelegatedAccess doesn't work for provided LDAP users
Browse files Browse the repository at this point in the history
  • Loading branch information
mhall authored and Miguel Pellicer committed Oct 29, 2018
1 parent 8663585 commit f1143ac
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@ public String getToolSkinCSS(String skinRepo){
*/
public List<User> searchUsers(String search) {
List<User> returnList = new ArrayList<User>();
returnList.addAll(userDirectoryService.searchExternalUsers(search, -1, -1));
returnList.addAll(userDirectoryService.searchExternalUsers(search, 1, Integer.MAX_VALUE));
returnList.addAll(userDirectoryService.searchUsers(search, 1, Integer.MAX_VALUE));
return returnList;
}
Expand Down

0 comments on commit f1143ac

Please sign in to comment.