debian-mirror-gitlab/lib/bulk_imports/groups/pipelines/group_pipeline.rb
2021-03-11 19:13:27 +05:30

21 lines
469 B
Ruby

# frozen_string_literal: true
module BulkImports
module Groups
module Pipelines
class GroupPipeline
include Pipeline
abort_on_failure!
extractor Common::Extractors::GraphqlExtractor, query: Graphql::GetGroupQuery
transformer Common::Transformers::ProhibitedAttributesTransformer
transformer Groups::Transformers::GroupAttributesTransformer
loader Groups::Loaders::GroupLoader
end
end
end
end