demarches-normaliennes/app/models/cerfa.rb
2016-05-20 16:34:57 +02:00

21 lines
No EOL
438 B
Ruby

class Cerfa < ActiveRecord::Base
belongs_to :dossier
belongs_to :user
mount_uploader :content, CerfaUploader
validates :content, :file_size => {:maximum => 3.megabytes}
def empty?
content.blank?
end
def content_url
unless content.url.nil?
if Features.remote_storage
(RemoteDownloader.new content.filename).url
else
(LocalDownloader.new content, 'CERFA').url
end
end
end
end