debian-mirror-gitlab/app/controllers/groups/avatars_controller.rb
2014-09-02 14:37:02 +02:00

12 lines
236 B
Ruby

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