def destroy
    comment = Comment.find(params[:id])
    comment.destroy if comment.present?
    @comments = @request.comments
    render partial: 'list', locals: { commentable: @request, visible: true }