debian-mirror-gitlab/app/controllers/groups/avatars_controller.rb
2015-09-11 14:41:01 +05:30

10 lines
216 B
Ruby

class Groups::AvatarsController < ApplicationController
def destroy
@group = Group.find_by(path: params[:group_id])
@group.remove_avatar!
@group.save
redirect_to edit_group_path(@group)
end
end