gitlab-org--gitlab-foss/app/workers/gitlab/github_import/import_pull_request_review_...

25 lines
522 B
Ruby

# frozen_string_literal: true
module Gitlab
module GithubImport
class ImportPullRequestReviewWorker # rubocop:disable Scalability/IdempotentWorker
include ObjectImporter
tags :exclude_from_kubernetes
worker_resource_boundary :cpu
def representation_class
Gitlab::GithubImport::Representation::PullRequestReview
end
def importer_class
Importer::PullRequestReviewImporter
end
def object_type
:pull_request_review
end
end
end
end