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>2018-07-26 13:55:21 +0300
committerJames Lopez <james@jameslopez.es>2018-08-02 12:50:19 +0300
commit07009a1f4893652e152794ae8160a2f46e00772c (patch)
treea9c03b82c4b28dfa3150cbd4735c07483b9547fb /app/models
parent3cc420b8094ec0240b473205fc886bd9c728cc5d (diff)
Add Object Storage to GitLab project import
- Refactor uploads manager - Refactor importer, update import spec - Add more object storage specs
Diffstat (limited to 'app/models')
-rw-r--r--app/models/import_export_upload.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/app/models/import_export_upload.rb b/app/models/import_export_upload.rb
index 40795d7c42f..f0cc5aafcd4 100644
--- a/app/models/import_export_upload.rb
+++ b/app/models/import_export_upload.rb
@@ -6,6 +6,7 @@ class ImportExportUpload < ActiveRecord::Base
belongs_to :project
+ # These hold the project Import/Export archives (.tar.gz files)
mount_uploader :import_file, ImportExportUploader
mount_uploader :export_file, ImportExportUploader