gitlab-org--gitlab-foss/app/controllers/groups/avatars_controller.rb

17 lines
334 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class Groups::AvatarsController < Groups::ApplicationController
2016-03-20 16:03:53 -04:00
before_action :authorize_admin_group!
skip_cross_project_access_check :destroy
feature_category :subgroups
2014-01-27 16:34:05 -05:00
def destroy
@group.remove_avatar!
@group.save
2018-07-02 06:43:06 -04:00
redirect_to edit_group_path(@group), status: :found
2014-01-27 16:34:05 -05:00
end
end