How do i create multiple URLs with /controller/action/ format?
- by Angela
I have several controller/actions where no :id needs to be passed.
what I did with the first two was make a custom route defining the controller and action.
I thought that the default would allow me to create controller/action.xml by using respond_to in the controller, but that doesn't appear to be the right way.
How can I create controller/action URL's (some are .xml) without creating a special route with map.connect?