summaryrefslogtreecommitdiff
path: root/lib/bulk_imports/projects/pipelines/commit_notes_pipeline.rb
blob: 092b03cb7b7e682c48c6208b5ecbd1c28a689d04 (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 CommitNotesPipeline
        include NdjsonPipeline

        relation_name 'commit_notes'

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