2018-09-23 15:44:14 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2015-11-16 11:24:14 -05:00
|
|
|
class Groups::AvatarsController < Groups::ApplicationController
|
2016-03-20 16:03:53 -04:00
|
|
|
before_action :authorize_admin_group!
|
|
|
|
|
2017-12-11 09:21:06 -05:00
|
|
|
skip_cross_project_access_check :destroy
|
|
|
|
|
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
|