2017-06-02 14:30:26 +02:00
|
|
|
class Attestation < ApplicationRecord
|
|
|
|
belongs_to :dossier
|
|
|
|
|
|
|
|
mount_uploader :pdf, AttestationUploader
|
2017-06-09 22:29:48 +02:00
|
|
|
|
|
|
|
MAX_SIZE_EMAILABLE = 2.megabytes
|
|
|
|
|
|
|
|
def emailable?
|
|
|
|
pdf.size <= MAX_SIZE_EMAILABLE
|
|
|
|
end
|
2017-06-02 14:30:26 +02:00
|
|
|
end
|