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

import_pull_request_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: 5b06ddf7079c92b1b7cfaea8b6c21ef8d1695a52 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# frozen_string_literal: true

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

      def importer_class
        Importers::PullRequestImporter
      end
    end
  end
end