gitlab-org--gitlab-foss/app/models/bulk_imports/file_transfer/group_config.rb

18 lines
324 B
Ruby

# frozen_string_literal: true
module BulkImports
module FileTransfer
class GroupConfig < BaseConfig
SKIPPED_RELATIONS = %w(members).freeze
def import_export_yaml
::Gitlab::ImportExport.group_config_file
end
def skipped_relations
SKIPPED_RELATIONS
end
end
end
end