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

33 lines
931 B
Ruby
Raw Normal View History

2020-08-06 16:35:45 +02:00
# == Schema Information
#
# Table name: refused_mails
#
# id :integer not null, primary key
# body :text
# subject :string
# created_at :datetime not null
# updated_at :datetime not null
# procedure_id :integer
#
2017-03-06 22:37:37 +01:00
module Mails
# refuse
2017-03-06 22:37:37 +01:00
class RefusedMail < ApplicationRecord
include MailTemplateConcern
belongs_to :procedure, optional: false
validates :subject, tags: true
validates :body, tags: true
SLUG = "refused_mail"
DEFAULT_TEMPLATE_NAME = "notification_mailer/default_templates/refused_mail"
DISPLAYED_NAME = 'Accusé de rejet du dossier'
DEFAULT_SUBJECT = 'Votre dossier nº --numéro du dossier-- a été refusé (--libellé démarche--)'
DOSSIER_STATE = Dossier.states.fetch(:refuse)
2019-07-22 15:21:05 +02:00
def actions_for_dossier(dossier)
[MailTemplateConcern::Actions::REPLY, MailTemplateConcern::Actions::SHOW]
end
2017-03-06 22:37:37 +01:00
end
end