summaryrefslogtreecommitdiff
path: root/app/models/bulk_imports/file_transfer/project_config.rb
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