mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 21:48:04 +08:00
0052e78bfe
hide controls when we showing an automatic group
56 lines
1.3 KiB
Ruby
56 lines
1.3 KiB
Ruby
class Admin::GroupsController < Admin::AdminController
|
|
def index
|
|
groups = Group.order(:name).all
|
|
render_serialized(groups, BasicGroupSerializer)
|
|
end
|
|
|
|
def refresh_automatic_groups
|
|
Group.refresh_automatic_groups!
|
|
render json: "ok"
|
|
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)
|
|
if group.automatic
|
|
can_not_modify_automatic
|
|
else
|
|
group.usernames = params[:group][:usernames]
|
|
group.name = params[:group][:name] if params[:group][:name]
|
|
if group.save
|
|
render json: "ok"
|
|
else
|
|
render_json_error group
|
|
end
|
|
end
|
|
end
|
|
|
|
def create
|
|
group = Group.new
|
|
group.name = params[:group][:name]
|
|
group.usernames = params[:group][:usernames] if params[:group][:usernames]
|
|
group.save!
|
|
render_serialized(group, BasicGroupSerializer)
|
|
end
|
|
|
|
def destroy
|
|
group = Group.find(params[:id].to_i)
|
|
if group.automatic
|
|
can_not_modify_automatic
|
|
else
|
|
group.destroy
|
|
render json: "ok"
|
|
end
|
|
end
|
|
|
|
protected
|
|
|
|
def can_not_modify_automatic
|
|
render json: {errors: I18n.t('groups.errors.can_not_modify_automatic')}, status: 422
|
|
end
|
|
end
|