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

project_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: e42b5bfce3dae097f02c9fb491d4bdb1e3f4e5fd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# frozen_string_literal: true

module BulkImports
  module FileTransfer
    class ProjectConfig < BaseConfig
      def base_export_path
        portable.disk_path
      end

      def import_export_yaml
        ::Gitlab::ImportExport.config_file
      end
    end
  end
end