Welcome to mirror list, hosted at ThFree Co, Russian Federation.

avatar_uploader.rb « uploaders « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 66d3bcb998aa0ff7602bf83009a31986287838f7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
class AvatarUploader < GitlabUploader
  include RecordsUploads
  include UploaderHelper

  storage :file

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

  def exists?
    model.avatar.file && model.avatar.file.exists?
  end

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