diff options
author | jessib <jessib@leap.se> | 2013-06-27 12:31:39 -0700 |
---|---|---|
committer | jessib <jessib@leap.se> | 2013-06-27 12:31:39 -0700 |
commit | a01e7686ea7c046a9cd544b618b30727f2a41b3b (patch) | |
tree | e00261ade269bfe6ddc843a728a4355807228ea9 /users/app/controllers | |
parent | ba036558e47da53e86ccb8cb7fb4ee1db725b804 (diff) |
Want to tweak some, but start to displaying base generic message via javascript.
Diffstat (limited to 'users/app/controllers')
-rw-r--r-- | users/app/controllers/controller_extension/authentication.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/users/app/controllers/controller_extension/authentication.rb b/users/app/controllers/controller_extension/authentication.rb index f0a6564..0dca29c 100644 --- a/users/app/controllers/controller_extension/authentication.rb +++ b/users/app/controllers/controller_extension/authentication.rb @@ -10,6 +10,7 @@ module ControllerExtension::Authentication def authentication_errors return unless attempted_login? errors = get_warden_errors + #default response to get_warden_errors is not an enumerable, so won't work if default is used errors.inject({}) do |translated,err| translated[err.first] = I18n.t(err.last) translated |