gitlab-org--gitlab-foss/app/workers/gitlab/github_import/import_note_worker.rb

22 lines
373 B
Ruby

# frozen_string_literal: true
module Gitlab
module GithubImport
class ImportNoteWorker # rubocop:disable Scalability/IdempotentWorker
include ObjectImporter
def representation_class
Representation::Note
end
def importer_class
Importer::NoteImporter
end
def object_type
:note
end
end
end
end