Merge pull request #2920 from thomasdarimont/issue/KEYCLOAK-3092-Increase-number-of-users-shown-in-UserListing
KEYCLOAK-3092: Show 25 users per page in user list by default
This commit is contained in:
commit
a189545f81
1 changed files with 2 additions and 2 deletions
|
@ -246,9 +246,9 @@ module.controller('UserListCtrl', function($scope, realm, User, UserImpersonatio
|
|||
|
||||
$scope.query = {
|
||||
realm: realm.realm,
|
||||
max : 5,
|
||||
max : 20,
|
||||
first : 0
|
||||
}
|
||||
};
|
||||
|
||||
$scope.impersonate = function(userId) {
|
||||
UserImpersonation.save({realm : realm.realm, user: userId}, function (data) {
|
||||
|
|
Loading…
Reference in a new issue