Skip to content

Commit

Permalink
increased the max limit of users that can be fetched from keycloak (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
dinesh-aot authored Jan 16, 2024
1 parent bf2fcba commit cebc468
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion epictrack-api/src/api/services/keycloak.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ class KeycloakService:
@staticmethod
def get_groups(brief_representation: bool = False):
"""Get all the groups"""
response = KeycloakService._request_keycloak(f'groups?briefRepresentation={brief_representation}')
response = KeycloakService._request_keycloak(f'groups?briefRepresentation={brief_representation}&max=2000')
return response.json()

@staticmethod
Expand Down

0 comments on commit cebc468

Please sign in to comment.