gitlab-org--gitlab-foss/app/uploaders/avatar_uploader.rb

26 lines
536 B
Ruby
Raw Normal View History

2016-08-18 14:31:44 +00:00
class AvatarUploader < GitlabUploader
include RecordsUploads
include UploaderHelper
2015-02-20 14:19:50 +00:00
storage :file
def store_dir
"#{base_dir}/#{model.class.to_s.underscore}/#{mounted_as}/#{model.id}"
2015-02-20 14:19:50 +00:00
end
def exists?
model.avatar.file && model.avatar.file.exists?
end
2017-01-02 11:35:15 +00:00
# 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-02-20 14:19:50 +00:00
end