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

module BulkImports
  module Projects
    module Pipelines
      class ProtectedBranchesPipeline
        include NdjsonPipeline

        relation_name 'protected_branches'

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