debian-mirror-gitlab/app/uploaders/avatar_uploader.rb

26 lines
536 B
Ruby
Raw Normal View History

2017-08-17 22:00:37 +05:30
class AvatarUploader < GitlabUploader
include RecordsUploads
2015-11-26 14:37:03 +05:30
include UploaderHelper
2015-04-26 12:48:37 +05:30
storage :file
def store_dir
2017-08-17 22:00:37 +05:30
"#{base_dir}/#{model.class.to_s.underscore}/#{mounted_as}/#{model.id}"
2015-04-26 12:48:37 +05:30
end
2016-08-24 12:49:21 +05:30
def exists?
model.avatar.file && model.avatar.file.exists?
end
2017-08-17 22:00:37 +05:30
# We set move_to_store and move_to_cache to 'false' to prevent stealing
# the avatar file from a project when forking it.
# https://gitlab.com/gitlab-org/gitlab-ce/issues/26158
def move_to_store
false
end
def move_to_cache
false
end
2015-04-26 12:48:37 +05:30
end