ensl.org/app/uploaders/file_uploader.rb
Ari Timonen ce5dfcfa6a Finish recreate, Fix file browsing
Add it to adminpanel
2020-04-01 05:00:53 +03:00

15 lines
No EOL
472 B
Ruby

# encoding: utf-8
class FileUploader < CarrierWave::Uploader::Base
# Override the directory where uploaded files will be stored.
# This is a sensible default for uploaders that are meant to be mounted:
def store_dir
model.directory.full_path
# .gsub(/public\//, '')
end
# Provide a default URL as a default if there hasn't been a file uploaded:
# def default_url
# "/images/fallback/" + [version_name, "default.png"].compact.join('_')
# end
end