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-14 17:57:25 +0300
committerJames Lopez <james@jameslopez.es>2016-04-14 17:57:25 +0300
commit0852f539aa389c66ef377b7d567c931f928e147f (patch)
tree82797f5e855f9235d445c943af7161b4cc7d2238 /lib/gitlab/import_export/import_export.yml
parent91ffd8028977984d3ea9a741a3a655ff6dae76b2 (diff)
refactored stuff, added a save and compress all class and moved mostly everything to lib
Diffstat (limited to 'lib/gitlab/import_export/import_export.yml')
-rw-r--r--lib/gitlab/import_export/import_export.yml37
1 files changed, 37 insertions, 0 deletions
diff --git a/lib/gitlab/import_export/import_export.yml b/lib/gitlab/import_export/import_export.yml
new file mode 100644
index 00000000000..92f492e9013
--- /dev/null
+++ b/lib/gitlab/import_export/import_export.yml
@@ -0,0 +1,37 @@
+# Class relationships to be included in the project import/export
+:project_tree:
+ - :issues:
+ - :notes
+ - :labels
+ - :milestones
+ - :snippets
+ - :releases
+ - :events
+ - :project_members:
+ - :user
+ - :merge_requests:
+ - :merge_request_diff
+ - :notes
+ - :ci_commits:
+ - :statuses
+
+:attributes_only:
+ :project:
+ - :name
+ - :path
+ - :description
+ - :issues_enabled
+ - :wall_enabled
+ - :merge_requests_enabled
+ - :wiki_enabled
+ - :snippets_enabled
+ - :visibility_level
+ - :archived
+ :user:
+ - :id
+ - :email
+ - :username
+
+:attributes_except:
+ :snippets:
+ - :expired_at \ No newline at end of file