In my rails 3 app using devise, I want to provide a link for users to edit their password.
I have a standard link that points to: /users/password/edit ... Log output below
Started GET "/users/password/edit" for 127.0.0.1 at 2011-08-10 10:11:46 -0700
Processing by Devise::PasswordsController#edit as HTML
User Load (0.6ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1
Redirected to http://localhost:3000/
Completed 302 Found in 309ms
Why is rails redirecting? Why can't I show the edit password page? Thanks
Devise::PasswordsController#edit
is for non-authenticated users who wish to change their password using a reset token. This reset token was previously sent to the user in an email (Reset password instructions). If the user is already logged in, this edit password page will always redirect to the after-sign-in path since it shouldn't be accessible to authenticated users.
I suppose what you want is to allow the user to change his password after logging in. You have to use Devise::RegistrationsController#edit
for that.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With