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:
authorJames Lopez <james@jameslopez.es>2016-04-12 19:06:57 +0300
committerJames Lopez <james@jameslopez.es>2016-04-12 19:06:57 +0300
commit6f74c7d4827955d44f53eeef0701e4e3c0f718a1 (patch)
tree8c907477b2fe08391863724bb6a550975b3617ad /app/services/projects/import_export
parent3b99e4ae5bc9e4d1bf54c65bf633ad449361b9df (diff)
fix export commits stuff
Diffstat (limited to 'app/services/projects/import_export')
-rw-r--r--app/services/projects/import_export/import_export.yml4
-rw-r--r--app/services/projects/import_export/project_tree_saver.rb2
2 files changed, 3 insertions, 3 deletions
diff --git a/app/services/projects/import_export/import_export.yml b/app/services/projects/import_export/import_export.yml
index c622447ef04..92f492e9013 100644
--- a/app/services/projects/import_export/import_export.yml
+++ b/app/services/projects/import_export/import_export.yml
@@ -12,8 +12,8 @@
- :merge_requests:
- :merge_request_diff
- :notes
- - :commit_statuses:
- - :commit
+ - :ci_commits:
+ - :statuses
:attributes_only:
:project:
diff --git a/app/services/projects/import_export/project_tree_saver.rb b/app/services/projects/import_export/project_tree_saver.rb
index b2ca85bd7c6..37bf3e8e545 100644
--- a/app/services/projects/import_export/project_tree_saver.rb
+++ b/app/services/projects/import_export/project_tree_saver.rb
@@ -20,7 +20,7 @@ module Projects
File.write(full_path, project_json_tree)
true
rescue
- #TODO: handle error
+ # TODO: handle error
false
end