Class: SimpleBlog::SimplePostThumbnailUploader

Inherits:
CarrierWave::Uploader::Base
  • Object
show all
Includes:
CarrierWave::MiniMagick
Defined in:
lib/simple_blog/simple_post_thumbnail_uploader.rb

Instance Method Summary collapse

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:



22
23
24
# File 'lib/simple_blog/simple_post_thumbnail_uploader.rb', line 22

def extension_white_list
  %w(png gif jpg jpeg)
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:



7
8
9
# File 'lib/simple_blog/simple_post_thumbnail_uploader.rb', line 7

def store_dir
  "system/blog/post_thumbnails/#{model.id}"
end