Files
gitlabhq/app/controllers/groups/avatars_controller.rb
T
2015-11-16 14:07:38 +01:00

9 lines
163 B
Ruby

class Groups::AvatarsController < ApplicationController
def destroy
@group.remove_avatar!
@group.save
redirect_to edit_group_path(@group)
end
end