ef-keycloak-connect 1.2.2 → 1.2.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ef-keycloak-connect",
3
- "version": "1.2.2",
3
+ "version": "1.2.3",
4
4
  "description": "Node JS keycloak adapter for authentication and authorization.",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -588,7 +588,7 @@ class KeycloakService extends Keycloak{
588
588
  for (let i = 0; i < keycloak_roles.length; i++) {
589
589
  try {
590
590
 
591
- config.url = keycloakConfig["auth-server-url"] + 'admin/realms/' + keycloakConfig.realm + '/roles/' + keycloak_roles[i] + '/users'
591
+ config.url = keycloakConfig["auth-server-url"] + 'admin/realms/' + keycloakConfig.realm + '/roles/' + keycloak_roles[i] + '/users?max=100000'
592
592
  let getUsersfromRoles = await requestController.httpRequest(config, true);
593
593
  userObject = getUsersfromRoles.data;
594
594