vote up 0 vote down star

I want to be able to change the default mapping of actions with RESTful url and type of request.

For example,

After adding map.resources :fruits in the routes, by default, sending a GET request to /fruits/:id calls show action in fruits controller. However, I would like to call a custom action, say display, in the fruits controller instead of show action. How do I do it? This has to be a route configuration.

flag

62% accept rate
This isn't directly related to your question, but please be aware that Rails' "RESTful routing" has nothing to do with REST. Pretty URIs are orthogonal to REST. There's no such thing as a "RESTful URL". If you're interested in REST, please read into it some more - Fielding's dissertation is the authoritative source, or you can browse some of the REST explanations on this site. – Wahnfrieden Aug 11 at 17:25

1 Answer

vote up 1 vote down check

I would like to recommend you to read this page:

http://guides.rubyonrails.org/routing.html

It explains in detail all aspects related to routing.

Using :path_names you can customize the new and edit generated paths. If you want to change GET /fruits/:id from activating the show action to activating a display action, then the change is invisible to the user. And you would be deviating from the flow with no apparent reason.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.