summaryrefslogtreecommitdiff
path: root/app/workers/gitlab/github_import/import_note_worker.rb
blob: d2b4c36a5b9c51b35f49833dbf1519a4cd561aca (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 ImportNoteWorker
      include ObjectImporter

      def representation_class
        Representation::Note
      end

      def importer_class
        Importer::NoteImporter
      end

      def counter_name
        :github_importer_imported_notes
      end

      def counter_description
        'The number of imported GitHub comments'
      end
    end
  end
end