debian-mirror-gitlab/app/workers/gitlab/github_import/import_pull_request_worker.rb
2020-04-08 14:13:33 +05:30

26 lines
524 B
Ruby

# frozen_string_literal: true
module Gitlab
module GithubImport
class ImportPullRequestWorker # rubocop:disable Scalability/IdempotentWorker
include ObjectImporter
def representation_class
Representation::PullRequest
end
def importer_class
Importer::PullRequestImporter
end
def counter_name
:github_importer_imported_pull_requests
end
def counter_description
'The number of imported GitHub pull requests'
end
end
end
end