Class: Adminpanel::GalleryUploader

Inherits:
CarrierWave::Uploader::Base
  • Object
show all
Includes:
CarrierWave::RMagick
Defined in:
app/uploaders/adminpanel/gallery_uploader.rb

Instance Method Summary collapse

Instance Method Details

#extension_white_listObject

Add a white list of extensions which are allowed to be uploaded. For images you might use something like this:



45
46
47
# File 'app/uploaders/adminpanel/gallery_uploader.rb', line 45

def extension_white_list
  %w(jpg jpeg png)
end

#rootObject

storage :fog



13
14
15
# File 'app/uploaders/adminpanel/gallery_uploader.rb', line 13

def root
  Rails.root.join 'public/'
end

#store_dirObject

Override the directory where uploaded files will be stored. This is a sensible default for uploaders that are meant to be mounted:



19
20
21
# File 'app/uploaders/adminpanel/gallery_uploader.rb', line 19

def store_dir
  "uploads/gallery/#{mounted_as}/#{model.id}"
end