diff options
author | Andrew White <andyw@pixeltrix.co.uk> | 2010-08-24 17:12:02 +0100 |
---|---|---|
committer | Andrew White <andyw@pixeltrix.co.uk> | 2010-08-24 17:12:02 +0100 |
commit | 1a6c81c4f9076885aee593b4aa3704b5cdbeb879 (patch) | |
tree | 7e77a5c7769b8882e5373dae5e9e9d9854bc4cef | |
parent | f460de1d237e02fdbc3006bc91813efe7837f576 (diff) | |
download | rails-1a6c81c4f9076885aee593b4aa3704b5cdbeb879.tar.gz rails-1a6c81c4f9076885aee593b4aa3704b5cdbeb879.tar.bz2 rails-1a6c81c4f9076885aee593b4aa3704b5cdbeb879.zip |
Revert "Use symbols when specifying custom resource actions"
This reverts commit 02aabbd19e59720d2d5819978d2f712c2279bf34.
-rw-r--r-- | railties/guides/source/routing.textile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/railties/guides/source/routing.textile b/railties/guides/source/routing.textile index 457b6804b1..7e1b0c2e32 100644 --- a/railties/guides/source/routing.textile +++ b/railties/guides/source/routing.textile @@ -313,7 +313,7 @@ To add a member route, just add a +member+ block into the resource block: <ruby> resources :photos do member do - get :preview + get 'preview' end end </ruby> @@ -324,7 +324,7 @@ Within the block of member routes, each route name specifies the HTTP verb that <ruby> resources :photos do - get :preview, :on => :member + get 'preview', :on => :member end </ruby> @@ -335,7 +335,7 @@ To add a route to the collection: <ruby> resources :photos do collection do - get :search + get 'search' end end </ruby> @@ -346,7 +346,7 @@ Just as with member routes, you can pass +:on+ to a route: <ruby> resources :photos do - get :search, :on => :collection + get 'search', :on => :collection end </ruby> |