diff --git a/app/controllers/backoffice/avis_controller.rb b/app/controllers/backoffice/avis_controller.rb
index 5271626c7..fc773fb40 100644
--- a/app/controllers/backoffice/avis_controller.rb
+++ b/app/controllers/backoffice/avis_controller.rb
@@ -49,7 +49,7 @@ class Backoffice::AvisController < ApplicationController
avis = Avis.find(params[:id])
redirect_to url_for(backoffice_dossier_path(avis.dossier_id))
else
- flash[:alert] = gestionnaire.errors.full_messages.join('
')
+ flash[:alert] = gestionnaire.errors.full_messages
redirect_to url_for(avis_sign_up_path(params[:id], email))
end
end
diff --git a/app/controllers/backoffice/private_formulaires_controller.rb b/app/controllers/backoffice/private_formulaires_controller.rb
index 0353b02f3..edd45dbd2 100644
--- a/app/controllers/backoffice/private_formulaires_controller.rb
+++ b/app/controllers/backoffice/private_formulaires_controller.rb
@@ -11,7 +11,7 @@ class Backoffice::PrivateFormulairesController < ApplicationController
if champs_service_errors.empty?
flash[:notice] = "Formulaire enregistré"
else
- flash[:alert] = champs_service_errors.join('
').html_safe
+ flash[:alert] = champs_service_errors
end
end
diff --git a/app/helpers/application_helper.rb b/app/helpers/application_helper.rb
new file mode 100644
index 000000000..8aed47dc2
--- /dev/null
+++ b/app/helpers/application_helper.rb
@@ -0,0 +1,8 @@
+module ApplicationHelper
+ def flash_class(level)
+ case level
+ when "notice" then "alert-success"
+ when "alert" then "alert-danger"
+ end
+ end
+end
diff --git a/app/helpers/devise_helper.rb b/app/helpers/devise_helper.rb
new file mode 100644
index 000000000..14afe134f
--- /dev/null
+++ b/app/helpers/devise_helper.rb
@@ -0,0 +1,8 @@
+module DeviseHelper
+ def devise_error_messages!
+ if resource.errors.full_messages.any?
+ flash.now[:alert] = resource.errors.full_messages
+ end
+ ''
+ end
+end
diff --git a/app/views/layouts/_flash_messages.html.haml b/app/views/layouts/_flash_messages.html.haml
index 730c11fde..1c1ec728b 100644
--- a/app/views/layouts/_flash_messages.html.haml
+++ b/app/views/layouts/_flash_messages.html.haml
@@ -1,8 +1,11 @@
-- if flash.notice.present? || flash.alert.present?
+- if flash.any?
#flash_message.center
- - if flash.notice.present?
- .alert.alert-success
- = flash.notice
- - if flash.alert.present?
- .alert.alert-danger
- = flash.alert.html_safe
+ - flash.each do |key, value|
+ - if value.class == Array
+ .alert{ class: flash_class(key) }
+ - value.each do |message|
+ = message
+ %br
+ - else
+ .alert{ class: flash_class(key) }
+ = value
diff --git a/spec/controllers/backoffice/avis_controller_spec.rb b/spec/controllers/backoffice/avis_controller_spec.rb
index 33d635c97..89239c2ab 100644
--- a/spec/controllers/backoffice/avis_controller_spec.rb
+++ b/spec/controllers/backoffice/avis_controller_spec.rb
@@ -178,7 +178,7 @@ describe Backoffice::AvisController, type: :controller do
it { expect(created_gestionnaire).to be_nil }
it { is_expected.to redirect_to avis_sign_up_path(avis_id, invited_email) }
- it { expect(flash.alert).to eq('Password : Le mot de passe est vide') }
+ it { expect(flash.alert).to eq(['Password : Le mot de passe est vide']) }
end
end
end