class RedactorRails::PictureUploader

Public Instance Methods

extension_white_list() click to toggle source

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

# File lib/generators/redactor_rails/templates/uploaders/redactor_rails_picture_uploader.rb, line 28
def extension_white_list
  RedactorRails.image_file_types
end
store_dir() click to toggle source

Override the directory where uploaded files will be stored. This is a sensible default for uploaders that are meant to be mounted:

# File lib/generators/redactor_rails/templates/uploaders/redactor_rails_picture_uploader.rb, line 11
def store_dir
  "system/redactor_assets/pictures/#{model.id}"
end