mirror of
https://github.com/discourse/discourse.git
synced 2025-09-07 12:02:53 +08:00
FIX: don't limit the number of group members returned to the front-end (UI needs some work for large groups)
This commit is contained in:
parent
82be9d3445
commit
f18d30f1d7
1 changed files with 1 additions and 1 deletions
|
@ -18,7 +18,7 @@ class GroupsController < ApplicationController
|
|||
|
||||
def members
|
||||
group = find_group(:group_id)
|
||||
render_serialized(group.users.order('username_lower asc').limit(200).to_a, GroupUserSerializer)
|
||||
render_serialized(group.users.order('username_lower asc').to_a, GroupUserSerializer)
|
||||
end
|
||||
|
||||
private
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue