summaryrefslogtreecommitdiff
path: root/lib/bulk_imports/groups/pipelines/boards_pipeline.rb
blob: 08a0a4abc9fa81ca8f8d0248ee637ea8f6ecf3c5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# frozen_string_literal: true

module BulkImports
  module Groups
    module Pipelines
      class BoardsPipeline
        include NdjsonPipeline

        relation_name 'boards'

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