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:
Stian Thorgersen 2016-06-08 13:21:13 +02:00
commit a189545f81

View file

@ -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) {