BigW Consortium Gitlab

avatar_uploader.rb 536 Bytes
Newer Older
1
class AvatarUploader < GitlabUploader
2
  include RecordsUploads
3 4
  include UploaderHelper

5 6 7
  storage :file

  def store_dir
8
    "#{base_dir}/#{model.class.to_s.underscore}/#{mounted_as}/#{model.id}"
9 10
  end

11 12 13
  def exists?
    model.avatar.file && model.avatar.file.exists?
  end
14 15 16 17 18 19 20 21 22 23 24

  # 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
25
end