Skip to content

Commit

Permalink
In a nested resource route, the parent resource param is <resource_na…
Browse files Browse the repository at this point in the history
…me>_id

This fix was made by @coreyhaines on docrails and merged in master.
Cleanly cherry picking into 3-2-stable wasn't possible.
  • Loading branch information
vijaydev committed Mar 8, 2012
1 parent df755d4 commit c1a01c7
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions railties/guides/source/routing.textile
Expand Up @@ -235,14 +235,14 @@ end

In addition to the routes for magazines, this declaration will also route ads to an +AdsController+. The ad URLs require a magazine:

|_.HTTP Verb |_.Path |_.action |_.used for |
|GET |/magazines/:id/ads |index |display a list of all ads for a specific magazine |
|GET |/magazines/:id/ads/new |new |return an HTML form for creating a new ad belonging to a specific magazine |
|POST |/magazines/:id/ads |create |create a new ad belonging to a specific magazine |
|GET |/magazines/:id/ads/:id |show |display a specific ad belonging to a specific magazine |
|GET |/magazines/:id/ads/:id/edit |edit |return an HTML form for editing an ad belonging to a specific magazine |
|PUT |/magazines/:id/ads/:id |update |update a specific ad belonging to a specific magazine |
|DELETE |/magazines/:id/ads/:id |destroy |delete a specific ad belonging to a specific magazine |
|_.HTTP Verb |_.Path |_.action |_.used for |
|GET |/magazines/:magazine_id/ads |index |display a list of all ads for a specific magazine |
|GET |/magazines/:magazine_id/ads/new |new |return an HTML form for creating a new ad belonging to a specific magazine |
|POST |/magazines/:magazine_id/ads |create |create a new ad belonging to a specific magazine |
|GET |/magazines/:magazine_id/ads/:id |show |display a specific ad belonging to a specific magazine |
|GET |/magazines/:magazine_id/ads/:id/edit |edit |return an HTML form for editing an ad belonging to a specific magazine |
|PUT |/magazines/:magazine_id/ads/:id |update |update a specific ad belonging to a specific magazine |
|DELETE |/magazines/:magazine_id/ads/:id |destroy |delete a specific ad belonging to a specific magazine |


This will also create routing helpers such as +magazine_ads_url+ and +edit_magazine_ad_path+. These helpers take an instance of Magazine as the first parameter (+magazine_ads_url(@magazine)+).
Expand Down

0 comments on commit c1a01c7

Please sign in to comment.