mirror of
https://github.com/ENSL/ensl.org.git
synced 2024-11-15 17:31:27 +00:00
15 lines
341 B
Ruby
15 lines
341 B
Ruby
# encoding: utf-8
|
|
|
|
class MapUploader < ImageUploader
|
|
# Create different versions of your uploaded files:
|
|
process :resize_to_limit => [200, 200]
|
|
|
|
def store_dir
|
|
File.join("local", "maps")
|
|
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
|