summaryrefslogtreecommitdiff
path: root/app/models/bulk_imports/file_transfer/group_config.rb
blob: 2266cbb484f5da9c9c11c1dbdf3b1a30f1560eaf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# frozen_string_literal: true

module BulkImports
  module FileTransfer
    class GroupConfig < BaseConfig
      def base_export_path
        portable.full_path
      end

      def import_export_yaml
        ::Gitlab::ImportExport.group_config_file
      end

      def skipped_relations
        @skipped_relations ||= %w(members)
      end
    end
  end
end