debian-mirror-gitlab/app/controllers/groups/avatars_controller.rb

9 lines
171 B
Ruby
Raw Normal View History

2015-11-26 14:37:03 +05:30
class Groups::AvatarsController < Groups::ApplicationController
2014-09-02 18:07:02 +05:30
def destroy
@group.remove_avatar!
@group.save
redirect_to edit_group_path(@group)
end
end