2010-10-19 10:20:09 +00:00
|
|
|
class ThemeUploader < ::CarrierWave::Uploader::Base
|
|
|
|
|
|
|
|
def store_dir
|
2010-12-30 14:24:47 +00:00
|
|
|
if Locomotive.config.delayed_job
|
|
|
|
"sites/#{model.id}/tmp/themes"
|
|
|
|
else
|
|
|
|
"#{Rails.root}/tmp/themes"
|
|
|
|
end
|
2010-10-19 10:20:09 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def cache_dir
|
|
|
|
"#{Rails.root}/tmp/uploads"
|
|
|
|
end
|
|
|
|
|
|
|
|
def extension_white_list
|
|
|
|
%w(zip)
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|