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

boards_pipeline.rb « pipelines « common « bulk_imports « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8329c217d54d3e5919048b7e6c93247041107f94 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# frozen_string_literal: true

module BulkImports
  module Common
    module Pipelines
      class BoardsPipeline
        include NdjsonPipeline

        relation_name 'boards'

        extractor ::BulkImports::Common::Extractors::NdjsonExtractor, relation: relation
      end
    end
  end
end