summaryrefslogtreecommitdiff
path: root/app/workers/gitlab/github_import/import_pull_request_review_worker.rb
blob: b8516fb8670b0271590e0eaa229c3359f0b6649e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# frozen_string_literal: true

module Gitlab
  module GithubImport
    class ImportPullRequestReviewWorker # rubocop:disable Scalability/IdempotentWorker
      include ObjectImporter

      def representation_class
        Gitlab::GithubImport::Representation::PullRequestReview
      end

      def importer_class
        Importer::PullRequestReviewImporter
      end

      def counter_name
        :github_importer_imported_pull_request_reviews
      end

      def counter_description
        'The number of imported GitHub pull request reviews'
      end
    end
  end
end