summaryrefslogtreecommitdiff
path: root/app/controllers
diff options
context:
space:
mode:
authormo khan <mo@mokhan.ca>2015-02-01 21:44:34 -0700
committermo khan <mo@mokhan.ca>2015-02-01 21:44:34 -0700
commita5205fa447f5c0c8c531d64b2908fb5e75065b7a (patch)
tree759f50a20ca948245519f2232c520e3517dbf509 /app/controllers
parent74fbea95e4f4a27e3e4fdc2b4e897b0316bd56f2 (diff)
extract page objects for password reset.
Diffstat (limited to 'app/controllers')
-rw-r--r--app/controllers/passwords_controller.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/controllers/passwords_controller.rb b/app/controllers/passwords_controller.rb
index 7b461776..e3927cdd 100644
--- a/app/controllers/passwords_controller.rb
+++ b/app/controllers/passwords_controller.rb
@@ -5,7 +5,7 @@ class PasswordsController < ApplicationController
def create
PasswordReset.send_reset_instructions_to(params[:user][:email])
- redirect_to new_session_path, notice: t('passwords.send_instructions')
+ redirect_to new_session_path, notice: t("passwords.send_instructions")
end
def edit