diff --git a/app/helpers/devise_helper.rb b/app/helpers/devise_helper.rb index c29120f7..fff3727f 100644 --- a/app/helpers/devise_helper.rb +++ b/app/helpers/devise_helper.rb @@ -1,27 +1,11 @@ # frozen_string_literal: true module DeviseHelper - # A simple way to show error messages for the current devise resource. If you need - # to customize this method, you can either overwrite it in your application helpers or - # copy the views to your application. - # - # This method is intended to stay simple and it is unlikely that we are going to change - # it to add more behavior or options. + # Retain this method for backwards compatibility, deprecated in favour of modifying the + # devise/shared/error_messages partial def devise_error_messages! return "" if resource.errors.empty? - messages = resource.errors.full_messages.map { |msg| content_tag(:li, msg) }.join - sentence = I18n.t("errors.messages.not_saved", - count: resource.errors.count, - resource: resource.class.model_name.human.downcase) - - html = <<-HTML -