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

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

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

      def importer_class
        Importers::PullRequestNotesImporter
      end
    end
  end
end