Class: FileUploader
- Inherits:
-
CarrierWave::Uploader::Base
- Object
- CarrierWave::Uploader::Base
- FileUploader
- Includes:
- CarrierWave::MiniMagick
- Defined in:
- lib/templates/file_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 'lib/templates/file_uploader.rb', line 38 def extension_white_list [:xls] 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:
15 16 17 |
# File 'lib/templates/file_uploader.rb', line 15 def store_dir "#{::Rails.root.to_s}/public/excel_uploaded_files/" end |