Class: RedactorRails::PictureUploader

Inherits:
CarrierWave::Uploader::Base
  • Object
show all
Includes:
CarrierWave::MiniMagick, UploaderBase
Defined in:
lib/generators/redactor_rails/templates/uploaders/redactor_rails_picture_uploader.rb

Instance Method Summary collapse

Methods included from UploaderBase

included

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:



28
29
30
# File 'lib/generators/redactor_rails/templates/uploaders/redactor_rails_picture_uploader.rb', line 28

def extension_white_list
  RedactorRails.image_file_types
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:



11
12
13
# File 'lib/generators/redactor_rails/templates/uploaders/redactor_rails_picture_uploader.rb', line 11

def store_dir
  "system/redactor_assets/pictures/#{model.id}"
end