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