2010-06-30 13:18:17 +00:00
|
|
|
# Set correct paths
|
|
|
|
module CustomFields
|
|
|
|
module Types
|
|
|
|
module File
|
|
|
|
class FileUploader < ::CarrierWave::Uploader::Base
|
2010-07-23 20:09:54 +00:00
|
|
|
|
2010-06-30 13:18:17 +00:00
|
|
|
def store_dir
|
|
|
|
"sites/#{model.content_type.site_id}/contents/#{model.id}/files"
|
|
|
|
end
|
|
|
|
|
|
|
|
def cache_dir
|
|
|
|
"#{Rails.root}/tmp/uploads"
|
|
|
|
end
|
2010-07-23 20:09:54 +00:00
|
|
|
|
|
|
|
end
|
2010-06-30 13:18:17 +00:00
|
|
|
end
|
|
|
|
end
|
2010-07-23 20:09:54 +00:00
|
|
|
end
|