Welcome to mirror list, hosted at ThFree Co, Russian Federation.

import_diff_note_worker.rb « github_import « gitlab « workers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 25fb037569228af3f2ba5f7e8c49e10227152f0c (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 ImportDiffNoteWorker # rubocop:disable Scalability/IdempotentWorker
      include ObjectImporter

      def representation_class
        Representation::DiffNote
      end

      def importer_class
        Importer::DiffNoteImporter
      end

      def counter_name
        :github_importer_imported_diff_notes
      end

      def counter_description
        'The number of imported GitHub pull request review comments'
      end
    end
  end
end