Class: EntryPhotoUploader
- Inherits:
-
CarrierWave::Uploader::Base
- Object
- CarrierWave::Uploader::Base
- EntryPhotoUploader
- Includes:
- CarrierWave::MiniMagick
- Defined in:
- app/uploaders/entry_photo_uploader.rb
Instance Method Summary collapse
-
#extension_white_list ⇒ Object
Add a white list of extensions which are allowed to be uploaded.
-
#store_dir ⇒ Object
Override the directory where uploaded files will be stored.
Instance Method Details
#extension_white_list ⇒ Object
Add a white list of extensions which are allowed to be uploaded. For images you might use something like this:
38 39 40 |
# File 'app/uploaders/entry_photo_uploader.rb', line 38 def extension_white_list %w(jpg jpeg gif png) end |
#store_dir ⇒ Object
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/entry_photo_uploader.rb', line 19 def store_dir "uploads/#{model.class.to_s.underscore}/#{mounted_as}/#{model.id}" end |