debian-mirror-gitlab/app/controllers/groups/avatars_controller.rb
2018-11-18 11:00:15 +05:30

13 lines
272 B
Ruby

class Groups::AvatarsController < Groups::ApplicationController
before_action :authorize_admin_group!
skip_cross_project_access_check :destroy
def destroy
@group.remove_avatar!
@group.save
redirect_to edit_group_path(@group), status: :found
end
end