debian-mirror-gitlab/app/controllers/groups/avatars_controller.rb
2021-01-03 14:25:43 +05:30

17 lines
334 B
Ruby

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