Skip to content
Snippets Groups Projects
Commit f137dde5 authored by hg's avatar hg
Browse files

OO-1232 limit user-without-group search to visible users

parent 2cd842c4
No related branches found
No related tags found
No related merge requests found
...@@ -403,7 +403,7 @@ public class UserAdminMainController extends MainLayoutBasicController implement ...@@ -403,7 +403,7 @@ public class UserAdminMainController extends MainLayoutBasicController implement
} }
else if (uobject.equals("userswithoutgroup")) { else if (uobject.equals("userswithoutgroup")) {
activatePaneInDetailView = "edit.withoutgroup"; activatePaneInDetailView = "edit.withoutgroup";
List<Identity> usersWithoutGroup = BaseSecurityManager.getInstance().findIdentitiesWithoutBusinessGroup(null); List<Identity> usersWithoutGroup = BaseSecurityManager.getInstance().findIdentitiesWithoutBusinessGroup(Identity.STATUS_VISIBLE_LIMIT);
contentCtr = new UsermanagerUserSearchController(ureq, bwControl, usersWithoutGroup, null, true, true); contentCtr = new UsermanagerUserSearchController(ureq, bwControl, usersWithoutGroup, null, true, true);
addToHistory(ureq, bwControl); addToHistory(ureq, bwControl);
listenTo(contentCtr); listenTo(contentCtr);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment