mirror of
https://github.com/codeninjasllc/discourse.git
synced 2025-04-24 13:03:35 -04:00
order group member by username, bump up max count to 200 for now
This commit is contained in:
parent
fe979b7299
commit
dbfd40da84
1 changed files with 1 additions and 1 deletions
|
@ -11,7 +11,7 @@ class Admin::GroupsController < Admin::AdminController
|
|||
|
||||
def users
|
||||
group = Group.find(params[:group_id].to_i)
|
||||
render_serialized(group.users.limit(100).to_a, BasicUserSerializer)
|
||||
render_serialized(group.users.order('username_lower asc').limit(200).to_a, BasicUserSerializer)
|
||||
end
|
||||
|
||||
def update
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue