I'm trying to route only an http verb. Say I have a comments resource like so:
map.resources :comments
And would like to be able to destroy all comments by sending a DELETE /comments
request. I.e. I want to be able to map just the http verb without the "action name" part of the route. Is this possible?
Cheers