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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app/workers/gitlab/bitbucket_import/import_issue_notes_worker.rb')
-rw-r--r--app/workers/gitlab/bitbucket_import/import_issue_notes_worker.rb13
1 files changed, 13 insertions, 0 deletions
diff --git a/app/workers/gitlab/bitbucket_import/import_issue_notes_worker.rb b/app/workers/gitlab/bitbucket_import/import_issue_notes_worker.rb
new file mode 100644
index 00000000000..de8239f30d9
--- /dev/null
+++ b/app/workers/gitlab/bitbucket_import/import_issue_notes_worker.rb
@@ -0,0 +1,13 @@
+# frozen_string_literal: true
+
+module Gitlab
+ module BitbucketImport
+ class ImportIssueNotesWorker # rubocop:disable Scalability/IdempotentWorker
+ include ObjectImporter
+
+ def importer_class
+ Importers::IssueNotesImporter
+ end
+ end
+ end
+end