Skip to content

Commit

Permalink
Show more than 100 users on /group/<groupname>
Browse files Browse the repository at this point in the history
Signed-off-by: Ryan Lerch <rlerch@redhat.com>
  • Loading branch information
ryanlerch committed Mar 25, 2021
1 parent de7a1e0 commit 91d6bbb
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion noggin/controller/group.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,9 @@ def group(ipa, groupname):
sponsor_form = AddGroupMemberForm(groupname=groupname)
remove_form = RemoveGroupMemberForm(groupname=groupname)

members = [User(u) for u in ipa.user_find(in_group=groupname)['result']]
members = [
User(u) for u in ipa.user_find(in_group=groupname, sizelimit=0)['result']
]

batch_methods = [
{"method": "user_find", "params": [[], {"uid": sponsorname, 'all': True}]}
Expand Down

0 comments on commit 91d6bbb

Please sign in to comment.