21 lines
512 B
Ruby
21 lines
512 B
Ruby
|
class AttestationUploader < BaseUploader
|
||
|
def root
|
||
|
File.join(Rails.root, 'public')
|
||
|
end
|
||
|
|
||
|
# Choose what kind of storage to use for this uploader:
|
||
|
if Features.remote_storage
|
||
|
storage :fog
|
||
|
else
|
||
|
storage :file
|
||
|
end
|
||
|
|
||
|
# 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
|
||
|
unless Features.remote_storage
|
||
|
"uploads/#{model.class.to_s.underscore}/#{mounted_as}/#{model.id}"
|
||
|
end
|
||
|
end
|
||
|
end
|