Class: Binda::Audio::AudioUploader
- Inherits:
-
CarrierWave::Uploader::Base
- Object
- CarrierWave::Uploader::Base
- Binda::Audio::AudioUploader
- Defined in:
- app/uploaders/binda/audio/audio_uploader.rb
Instance Method Summary collapse
-
#extension_whitelist ⇒ Object
Add a white list of extensions which are allowed to be uploaded.
- #register_details ⇒ Object
-
#store_dir ⇒ Object
Override the directory where uploaded files will be stored.
Instance Method Details
#extension_whitelist ⇒ Object
Add a white list of extensions which are allowed to be uploaded. For images you might use something like this:
14 15 16 |
# File 'app/uploaders/binda/audio/audio_uploader.rb', line 14 def extension_whitelist %w(mp3 m4a m4b ra ram wav ogg oga mid midi wma wax mka) end |
#register_details ⇒ Object
19 20 21 22 23 24 |
# File 'app/uploaders/binda/audio/audio_uploader.rb', line 19 def register_details if file && model model.content_type = file.content_type if file.content_type model.file_size = file.size end 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:
8 9 10 |
# File 'app/uploaders/binda/audio/audio_uploader.rb', line 8 def store_dir "uploads/#{model.class.to_s.underscore}/#{mounted_as}/#{model.id}" end |