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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'lib/gitlab/import_export/project/tree_saver.rb')
-rw-r--r--lib/gitlab/import_export/project/tree_saver.rb15
1 files changed, 11 insertions, 4 deletions
diff --git a/lib/gitlab/import_export/project/tree_saver.rb b/lib/gitlab/import_export/project/tree_saver.rb
index 01000c9d6d9..988776fe600 100644
--- a/lib/gitlab/import_export/project/tree_saver.rb
+++ b/lib/gitlab/import_export/project/tree_saver.rb
@@ -15,10 +15,17 @@ module Gitlab
end
def save
- json_writer = ImportExport::JSON::LegacyWriter.new(@full_path)
-
- serializer = ImportExport::JSON::StreamingSerializer.new(exportable, reader.project_tree, json_writer)
- serializer.execute
+ json_writer = ImportExport::JSON::LegacyWriter.new(
+ @full_path,
+ allowed_path: "project"
+ )
+
+ ImportExport::JSON::StreamingSerializer.new(
+ exportable,
+ reader.project_tree,
+ json_writer,
+ exportable_path: "project"
+ ).execute
true
rescue => e