2018-01-05 11:16:50 +01:00
|
|
|
class AdministrationMailerPreview < ActionMailer::Preview
|
|
|
|
def dubious_procedures
|
|
|
|
procedures_and_champs = [
|
|
|
|
[Procedure.first, [TypeDeChamp.new(libelle: 'iban'), TypeDeChamp.new(libelle: 'religion')]],
|
|
|
|
[Procedure.last, [TypeDeChamp.new(libelle: 'iban'), TypeDeChamp.new(libelle: 'numéro de carte bleu')]]
|
|
|
|
]
|
|
|
|
AdministrationMailer.dubious_procedures(procedures_and_champs)
|
|
|
|
end
|
2018-01-24 18:15:06 +01:00
|
|
|
|
|
|
|
def invite_admin
|
2018-05-31 18:07:19 +02:00
|
|
|
AdministrationMailer.invite_admin(Administrateur.last, "12345678", 0)
|
2018-01-24 18:15:06 +01:00
|
|
|
end
|
2018-03-27 13:52:34 +02:00
|
|
|
|
|
|
|
def refuse_admin
|
|
|
|
AdministrationMailer.refuse_admin('bad_admin@pipo.com')
|
|
|
|
end
|
2018-01-05 11:16:50 +01:00
|
|
|
end
|