Welcome to mirror list, hosted at ThFree Co, Russian Federation.

group_config.rb « file_transfer « bulk_imports « models « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6766c00246b50f4df756ecfe3313a0a4a690fe15 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# 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