mirror of
https://github.com/ENSL/ensl.org.git
synced 2024-11-15 09:21:25 +00:00
15 lines
345 B
Ruby
15 lines
345 B
Ruby
# encoding: utf-8
|
|
|
|
class MovieUploader < ImageUploader
|
|
# Create different versions of your uploaded files:
|
|
process :resize_to_limit => [160, 120]
|
|
|
|
def store_dir
|
|
File.join("local", "movies")
|
|
end
|
|
|
|
# Provide a default URL as a default if there hasn't been a file uploaded:
|
|
def default_url
|
|
"/images/icons/noavatar.jpg"
|
|
end
|
|
end
|