mirror of
https://github.com/discourse/discourse.git
synced 2025-05-02 04:54:35 +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
@ -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…
x
Reference in New Issue
Block a user