devise_for creates the usual routes, including a DELETE route. Because of a nasty bug on our site (related to IE 8 not behaving itself!), we just want to remove the DELETE route altogether. We have no need of it.
Unfortunately, devise_for doesn't support an :except or :only option (from what i can tell).
I'm wondering how i can remove a route from Rails.application.routes? Either in the draw block, or afterward?
thanks!
EDIT: some details of the bug referred to above
we were issuing a DELETE request to a custom UJS controller action
in the controller action we were removing what we wanted to, then doing a 302 redirect. This was a bad idea, and we have since corrected it by returning some JSON instead.
- some clients, upon receiving the 302 would issue a new DELETE request to the redirect, which routes to a Devise delete route! Thereby inadvertantly deleting the person! Yikes. We were assuming this would be a GET. Bad assumption.
This bug has been fixed, but i would like to remove the route nonetheless.
EDIT 2: so i started a bounty on the question, i really want to know if its possible to party directly on the RouteSet in Rails.
EDIT 3: Here is what i did in the end, which was suggested by the bounty-winner in his quote from Jose“ Valim:
In config/routes.rb, i added this ABOVE the devise_for call which sets up the rest of my 'people' routes:
delete '/person', :to => 'people#destroy'
Then in my existing people_controller.rb i added a no-op method:
def destroy
render :nothing => true
end
This is the simplest thing that could possibly work in this situation, or is it? I'm still a little irked that there isn't a simple way to just remove the route from the RouteSet. Also, the delete route still exists for the devise controller, but it won't get called because rails looks for the first match in config\routes.rb and returns it.
ok, thanks for the help everyone!