demarches-normaliennes/app/models/piece_jointe.rb
2015-08-18 17:00:09 +02:00

11 lines
245 B
Ruby

class PieceJointe < ActiveRecord::Base
belongs_to :dossier
belongs_to :type_piece_jointe
delegate :api_entreprise, :libelle, to: :type_piece_jointe
mount_uploader :content, PieceJointeUploader
def empty?
content.blank?
end
end