Work in progress: Groups Page

This commit is contained in:
Robin Ward
2014-02-06 16:14:32 -05:00
parent 325c2dfaea
commit 3b1ef6ebc9
10 changed files with 64 additions and 29 deletions

View File

@ -9,11 +9,6 @@ class Admin::GroupsController < Admin::AdminController
render json: success_json
end
def users
group = Group.find(params[:group_id].to_i)
render_serialized(group.users.order('username_lower asc').limit(200).to_a, BasicUserSerializer)
end
def update
group = Group.find(params[:id].to_i)