I just upgraded to rails 3.2.8
and devise 2.1.2
, totally wiping my User model to use the new migration and setup. I kept my old views though and started to test my user link to destroy/delete their own account. Now I tested this in Firefox and it works with out error, bringing up the confirm box and deleting the account if confirmed. In Google Chrome though I get no confirm box and it goes straight to:
Routing Error
No route matches [GET] "/users"
This is my link as it should be:
Unhappy? <%= link_to "Delete my account", registration_path(resource_name), :data => { :confirm => "Are you sure?" }, :method => :delete %>.
Anyone else have this madness? Why does it not work for this browser?