demarches-normaliennes/app/models/mails/received_mail.rb

14 lines
368 B
Ruby
Raw Normal View History

2017-03-06 22:37:37 +01:00
module Mails
class ReceivedMail < ApplicationRecord
2017-03-06 22:37:37 +01:00
include MailTemplateConcern
belongs_to :procedure
SLUG = "received_mail"
2017-05-27 01:16:38 +02:00
TEMPLATE_NAME = "mails/received_mail"
DISPLAYED_NAME = 'Accusé de passage en instruction'
DEFAULT_OBJECT = 'Votre dossier TPS nº --numéro du dossier-- va être instruit'
IS_DOSSIER_TERMINE = false
2017-03-06 22:37:37 +01:00
end
end