From 956c3fe36c5b589ffa4c055f4994bac0d89f5ea1 Mon Sep 17 00:00:00 2001 From: Pierre de La Morinerie Date: Mon, 25 Jun 2018 11:12:42 +0200 Subject: [PATCH] Replace hardcoded phone numbers by a CONTACT_PHONE constant --- app/views/administration_mailer/invite_admin.html.haml | 4 +++- app/views/layouts/_new_header.haml | 3 ++- app/views/layouts/mailers/_bizdev_signature.html.haml | 3 ++- config/initializers/{emails.rb => contacts.rb} | 2 ++ config/initializers/devise.rb | 2 +- lib/mailers/attestation_closed_mail_discrepancy_mailer.rb | 2 +- 6 files changed, 11 insertions(+), 5 deletions(-) rename config/initializers/{emails.rb => contacts.rb} (86%) diff --git a/app/views/administration_mailer/invite_admin.html.haml b/app/views/administration_mailer/invite_admin.html.haml index 1b0c515cf..425d5f5de 100644 --- a/app/views/administration_mailer/invite_admin.html.haml +++ b/app/views/administration_mailer/invite_admin.html.haml @@ -13,7 +13,9 @@ %p Afin de vous accompagner dans la découverte de demarches-simplifiees.fr, je vous propose de m’appeler pour faire un point sur vos besoins de dématérialisation. %br - Vous pouvez me joindre au numéro suivant : 01 76 42 02 87. + Vous pouvez me joindre au numéro suivant : + = CONTACT_PHONE + \. %p Je vous invite également à consulter notre site de documentation qui regroupe l'ensemble des informations relatives à demarches-simplifiees.fr ainsi que des tutoriels d’utilisation : diff --git a/app/views/layouts/_new_header.haml b/app/views/layouts/_new_header.haml index abf0f3ba0..c984ee4e5 100644 --- a/app/views/layouts/_new_header.haml +++ b/app/views/layouts/_new_header.haml @@ -27,7 +27,8 @@ .contact-details Vous avez besoin d’aide ? Contactez-nous : %br - – par téléphone : 01 76 42 02 87 + – par téléphone : + = link_to CONTACT_PHONE, "tel:#{CONTACT_PHONE}" %br – par email : = link_to CONTACT_EMAIL, "mailto:#{CONTACT_EMAIL}" diff --git a/app/views/layouts/mailers/_bizdev_signature.html.haml b/app/views/layouts/mailers/_bizdev_signature.html.haml index adff09cbb..4e1652a20 100644 --- a/app/views/layouts/mailers/_bizdev_signature.html.haml +++ b/app/views/layouts/mailers/_bizdev_signature.html.haml @@ -6,7 +6,8 @@ Cordialement, %br Équipe demarches-simplifiees.fr %br -Téléphone (standard) : 01 76 42 02 87 +Téléphone (standard) : += CONTACT_PHONE %br Incubateur de Services Numériques / beta.gouv.fr %br diff --git a/config/initializers/emails.rb b/config/initializers/contacts.rb similarity index 86% rename from config/initializers/emails.rb rename to config/initializers/contacts.rb index 9d81d1719..736a51dfc 100644 --- a/config/initializers/emails.rb +++ b/config/initializers/contacts.rb @@ -3,5 +3,7 @@ if !defined?(CONTACT_EMAIL) EQUIPE_EMAIL = "equipe@demarches-simplifiees.fr" TECH_EMAIL = "tech@demarches-simplifiees.fr" + CONTACT_PHONE = "01 76 42 02 87" + OLD_CONTACT_EMAIL = "contact@tps.apientreprise.fr" end diff --git a/config/initializers/devise.rb b/config/initializers/devise.rb index 79919ad70..46e0b9663 100644 --- a/config/initializers/devise.rb +++ b/config/initializers/devise.rb @@ -1,4 +1,4 @@ -require_relative "emails" +require_relative "contacts" # Use this hook to configure devise mailer, warden hooks and so forth. # Many of these configuration options can be set straight in your model. diff --git a/lib/mailers/attestation_closed_mail_discrepancy_mailer.rb b/lib/mailers/attestation_closed_mail_discrepancy_mailer.rb index cf8e38026..9812740ec 100644 --- a/lib/mailers/attestation_closed_mail_discrepancy_mailer.rb +++ b/lib/mailers/attestation_closed_mail_discrepancy_mailer.rb @@ -34,7 +34,7 @@ module Mailers #{detail_procedures(procedures)} - Pour toute question vous pouvez nous joindre par téléphone au 01 76 42 02 87 + Pour toute question vous pouvez nous joindre par téléphone au #{CONTACT_PHONE} ou sur l’adresse email #{CONTACT_EMAIL}. -- \nL’équipe demarches-simplifiees.fr HEREDOC