[KEYCLOAK-14282] Fix missing flag for enabled and exact flag
This commit is contained in:
parent
914b226d11
commit
f639cc82b7
1 changed files with 1 additions and 1 deletions
|
@ -229,7 +229,7 @@ public class UsersResource {
|
|||
}
|
||||
return searchForUser(attributes, realm, userPermissionEvaluator, briefRepresentation, firstResult, maxResults, false);
|
||||
}
|
||||
} else if (last != null || first != null || email != null || username != null) {
|
||||
} else if (last != null || first != null || email != null || username != null || enabled != null || exact != null) {
|
||||
Map<String, String> attributes = new HashMap<>();
|
||||
if (last != null) {
|
||||
attributes.put(UserModel.LAST_NAME, last);
|
||||
|
|
Loading…
Reference in a new issue