BigW Consortium Gitlab

notes_importer.rb 538 Bytes
Newer Older
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 26 27 28 29 30 31
# frozen_string_literal: true

module Gitlab
  module GithubImport
    module Importer
      class NotesImporter
        include ParallelScheduling

        def importer_class
          NoteImporter
        end

        def representation_class
          Representation::Note
        end

        def sidekiq_worker_class
          ImportNoteWorker
        end

        def collection_method
          :issues_comments
        end

        def id_for_already_imported_cache(note)
          note.id
        end
      end
    end
  end
end