Class: Iconly::SvgUploader

Inherits:
CarrierWave::Uploader::Base
  • Object
show all
Defined in:
app/uploaders/iconly/svg_uploader.rb

Instance Method Summary collapse

Instance Method Details

#extension_whitelistObject

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



41
42
43
# File 'app/uploaders/iconly/svg_uploader.rb', line 41

def extension_whitelist
  %w(svg)
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:



15
16
17
# File 'app/uploaders/iconly/svg_uploader.rb', line 15

def store_dir
  "uploads/packages/#{model.package.to_param}/icons"
end