demarches-normaliennes/app/models/cerfa.rb

16 lines
306 B
Ruby
Raw Normal View History

2015-08-18 13:52:00 +02:00
class Cerfa < ActiveRecord::Base
belongs_to :dossier
mount_uploader :content, CerfaUploader
validates :content, :file_size => {:maximum => 3.megabytes}
2015-08-18 16:30:57 +02:00
def empty?
content.blank?
end
def content_url
unless content.url.nil?
(Downloader.new content, 'CERFA').url
end
end
2015-08-18 13:52:00 +02:00
end