summaryrefslogtreecommitdiff
path: root/lib/gitlab/import_export.rb
blob: 588647e5adb6e47859360958306d8f0fc08756da (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
module Gitlab
  module ImportExport
    extend self

    VERSION = '0.1.1'

    def export_path(relative_path:)
      File.join(storage_path, relative_path)
    end

    def storage_path
      File.join(Settings.shared['path'], 'tmp/project_exports')
    end

    def project_filename
      "project.json"
    end

    def project_bundle_filename
      "project.bundle"
    end

    def config_file
      Rails.root.join('lib/gitlab/import_export/import_export.yml')
    end

    def version_filename
      'VERSION'
    end

    def version
      VERSION
    end

    def reset_tokens?
      true
    end
  end
end