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

gitlab_uploader.rb « uploaders « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 02d7c601d6c08667b58d453738d477c194bf8a9f (plain)
1
2
3
4
5
6
7
8
9
10
11
class GitlabUploader < CarrierWave::Uploader::Base
  # Reduce disk IO
  def move_to_cache
    true
  end

  # Reduce disk IO
  def move_to_store
    true
  end
end