summaryrefslogtreecommitdiff
path: root/app/controllers/groups/avatars_controller.rb
blob: 35a61b359c8fa9382ff332537cf2bfdba1f817e6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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