2013-04-17 03:08:21 -04:00
|
|
|
class Admin::GroupsController < Admin::AdminController
|
2013-05-08 01:20:38 -04:00
|
|
|
def index
|
2013-07-22 14:44:11 -04:00
|
|
|
groups = Group.order(:name).to_a
|
2013-05-09 03:37:34 -04:00
|
|
|
render_serialized(groups, BasicGroupSerializer)
|
2013-05-08 01:20:38 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def refresh_automatic_groups
|
|
|
|
Group.refresh_automatic_groups!
|
|
|
|
render json: "ok"
|
|
|
|
end
|
|
|
|
|
|
|
|
def users
|
|
|
|
group = Group.find(params[:group_id].to_i)
|
2013-06-16 22:02:48 -04:00
|
|
|
render_serialized(group.users.order('username_lower asc').limit(200).to_a, BasicUserSerializer)
|
2013-05-08 01:20:38 -04:00
|
|
|
end
|
2013-05-08 21:33:56 -04:00
|
|
|
|
|
|
|
def update
|
|
|
|
group = Group.find(params[:id].to_i)
|
2013-06-16 22:54:25 -04:00
|
|
|
if group.automatic
|
|
|
|
can_not_modify_automatic
|
|
|
|
else
|
|
|
|
group.usernames = params[:group][:usernames]
|
2013-06-16 23:43:06 -04:00
|
|
|
group.name = params[:group][:name] if params[:group][:name]
|
|
|
|
if group.save
|
|
|
|
render json: "ok"
|
|
|
|
else
|
|
|
|
render_json_error group
|
|
|
|
end
|
2013-06-16 22:54:25 -04:00
|
|
|
end
|
2013-05-08 21:33:56 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def create
|
|
|
|
group = Group.new
|
|
|
|
group.name = params[:group][:name]
|
|
|
|
group.usernames = params[:group][:usernames] if params[:group][:usernames]
|
2013-07-24 00:31:15 -04:00
|
|
|
if group.save
|
|
|
|
render_serialized(group, BasicGroupSerializer)
|
|
|
|
else
|
|
|
|
render_json_error group
|
|
|
|
end
|
2013-05-08 21:33:56 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def destroy
|
|
|
|
group = Group.find(params[:id].to_i)
|
2013-06-16 22:54:25 -04:00
|
|
|
if group.automatic
|
|
|
|
can_not_modify_automatic
|
|
|
|
else
|
|
|
|
group.destroy
|
2013-07-21 22:37:01 -04:00
|
|
|
render json: success_json
|
2013-06-16 22:54:25 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
protected
|
|
|
|
|
|
|
|
def can_not_modify_automatic
|
|
|
|
render json: {errors: I18n.t('groups.errors.can_not_modify_automatic')}, status: 422
|
2013-05-08 21:33:56 -04:00
|
|
|
end
|
2013-04-17 03:08:21 -04:00
|
|
|
end
|