In my Rails 3.0 application, I have a series of very large search forms on my resource: an index page requiring the use of POST instead of GET.
Currently, the application sends a POST request to resource # create when I want it to go to resource index #. I understand this is a RESTful route, but I need to redefine it. How can I do this while also maintaining the ability to create a new record for this resource?
Many thanks.
source
share