summaryrefslogtreecommitdiff
path: root/app/controllers/groups/avatars_controller.rb
blob: 735915abdaa37a51a5e2c6c8db282779c0825099 (plain)
1
2
3
4
5
6
7
8
9
10
class Groups::AvatarsController < Groups::ApplicationController
  before_action :authorize_admin_group!

  def destroy
    @group.remove_avatar!
    @group.save

    redirect_to edit_group_path(@group), status: 302
  end
end