From ba1225c72b7d139e2705461a08325ee1ea7c0cda Mon Sep 17 00:00:00 2001 From: Rick Olson Date: Wed, 10 Jan 2007 18:08:43 +0000 Subject: add some more detail on nested resource docs [Rick] git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@5877 5ecf4fe2-1ee6-0310-87b1-e25e094e27de --- actionpack/lib/action_controller/resources.rb | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) (limited to 'actionpack/lib/action_controller/resources.rb') diff --git a/actionpack/lib/action_controller/resources.rb b/actionpack/lib/action_controller/resources.rb index fd3c08c303..f23ebfb813 100644 --- a/actionpack/lib/action_controller/resources.rb +++ b/actionpack/lib/action_controller/resources.rb @@ -175,7 +175,15 @@ module ActionController # map.resources :articles do |article| # article.resources :comments # end - # + # + # The comment resources work the same, but must now include a value for :article_id. + # + # comments_url(@article) + # comment_url(@article, @comment) + # + # comments_url(:article_id => @article) + # comment_url(:article_id => @article, :id => @comment) + # # * :name_prefix -- define a prefix for all generated routes, usually ending in an underscore. # Use this if you have named routes that may clash. # -- cgit v1.2.3