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 'app/uploaders/attachment_uploader.rb')
-rw-r--r--app/uploaders/attachment_uploader.rb12
1 files changed, 6 insertions, 6 deletions
diff --git a/app/uploaders/attachment_uploader.rb b/app/uploaders/attachment_uploader.rb
index 47de6fe0fbd..9b142dbe4b8 100644
--- a/app/uploaders/attachment_uploader.rb
+++ b/app/uploaders/attachment_uploader.rb
@@ -6,12 +6,6 @@ class AttachmentUploader < GitlabUploader
prepend ObjectStorage::Extension::RecordsUploads
include UploaderHelper
- private
-
- def dynamic_segment
- File.join(model.class.underscore, mounted_as.to_s, model.id.to_s)
- end
-
def mounted_as
# Geo fails to sync attachments on Note, and LegacyDiffNotes with missing mount_point.
#
@@ -22,4 +16,10 @@ class AttachmentUploader < GitlabUploader
super
end
end
+
+ private
+
+ def dynamic_segment
+ File.join(model.class.underscore, mounted_as.to_s, model.id.to_s)
+ end
end