Skip to content
Snippets Groups Projects
Commit cce270c8 authored by srosse's avatar srosse
Browse files

no-jira: remove deleted status from the admin user search form

parent 8b07aa57
No related branches found
No related tags found
No related merge requests found
......@@ -130,15 +130,13 @@ public class UsermanagerUserSearchForm extends FormBasicController {
Integer.toString(Identity.STATUS_ACTIV),
Integer.toString(Identity.STATUS_PERMANENT),
Integer.toString(Identity.STATUS_PENDING),
Integer.toString(Identity.STATUS_LOGIN_DENIED),
Integer.toString(Identity.STATUS_DELETED)
Integer.toString(Identity.STATUS_LOGIN_DENIED)
};
statusValues = new String[] {
translate("rightsForm.status.activ"),
translate("rightsForm.status.permanent"),
translate("rightsForm.status.pending"),
translate("rightsForm.status.login_denied"),
translate("rightsForm.status.deleted")
translate("rightsForm.status.login_denied")
};
List<String> organisationKeyList = new ArrayList<>();
......
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