encoding: utf-8
Add a white list of extensions which are allowed to be uploaded, for images you might use something like this:
# File app/uploaders/outside_organization_logo_uploader.rb, line 56 def extension_white_list %w(jpg jpeg gif png) end
Override the directory where uploaded files will be stored This is a sensible default for uploaders that are meant to be mounted:
# File app/uploaders/outside_organization_logo_uploader.rb, line 33 def store_dir "uploads/#{model.class.to_s.underscore}/#{mounted_as}/#{model.id}" end