mirror of
https://github.com/ENSL/ensl.org.git
synced 2024-11-15 17:31:27 +00:00
19 lines
304 B
Ruby
19 lines
304 B
Ruby
# encoding: utf-8
|
|
|
|
class ImageUploader < CarrierWave::Uploader::Base
|
|
include CarrierWave::RMagick
|
|
|
|
storage :file
|
|
|
|
def store_dir
|
|
"images"
|
|
end
|
|
|
|
def filename
|
|
model.id.to_s + File.extname(@filename) unless @filename.nil?
|
|
end
|
|
|
|
def extension_white_list
|
|
%w(jpg jpeg gif png)
|
|
end
|
|
end
|