From da5dfdff405e6953036e2cf2e6b553bb2e4837f9 Mon Sep 17 00:00:00 2001 From: Mathieu Magnin Date: Thu, 9 Nov 2017 12:09:45 +0100 Subject: [PATCH] Alert users after OVH outage --- app/controllers/root_controller.rb | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/app/controllers/root_controller.rb b/app/controllers/root_controller.rb index 0cd686880..7db4cea30 100644 --- a/app/controllers/root_controller.rb +++ b/app/controllers/root_controller.rb @@ -32,6 +32,11 @@ class RootController < ApplicationController return redirect_to administrations_path end + # TODO remove me + if Date.today <= Date.new(2017, 11, 11) + flash.now.notice = ["Une panne nationale de notre hébergeur OVH a rendu le service Téléprocédures Simplifiées inaccessible le jeudi 8 novembre de 7h15 à 11h15.", "Veuillez nous excuser pour la gêne occasionnée."] + end + render 'landing' end