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

import_issue_worker.rb « bitbucket_import « gitlab « workers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7df3f6d4a624f8427bf1dc2d30591285c05d359c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# frozen_string_literal: true

module Gitlab
  module BitbucketImport
    class ImportIssueWorker # rubocop:disable Scalability/IdempotentWorker
      include ObjectImporter

      def importer_class
        Importers::IssueImporter
      end
    end
  end
end