diff options
author | Santiago Pastorino <santiago@wyeworks.com> | 2010-12-11 02:02:09 -0200 |
---|---|---|
committer | Santiago Pastorino <santiago@wyeworks.com> | 2010-12-11 02:02:09 -0200 |
commit | 93af9ecf35063a372604c4d0fd168c3fd425e396 (patch) | |
tree | 9347a5ae660c6788dec547c918c6b3c9a6bacba6 /railties/guides | |
parent | e4c252c119acb0e62a4832f904cdff3306094ee7 (diff) | |
download | rails-93af9ecf35063a372604c4d0fd168c3fd425e396.tar.gz rails-93af9ecf35063a372604c4d0fd168c3fd425e396.tar.bz2 rails-93af9ecf35063a372604c4d0fd168c3fd425e396.zip |
Add named helper to photo controller example
Diffstat (limited to 'railties/guides')
-rw-r--r-- | railties/guides/source/routing.textile | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/railties/guides/source/routing.textile b/railties/guides/source/routing.textile index 3a3d1e050c..d3f8e435ec 100644 --- a/railties/guides/source/routing.textile +++ b/railties/guides/source/routing.textile @@ -611,14 +611,14 @@ resources :photos, :controller => "images" will recognize incoming paths beginning with +/photos+ but route to the +Images+ controller: -|_. Verb |_.Path |_.action | -|GET |/photos |index | -|GET |/photos/new |new | -|POST |/photos |create | -|GET |/photos/1 |show | -|GET |/photos/1/edit |edit | -|PUT |/photos/1 |update | -|DELETE |/photos/1 |destroy | +|_. Verb |_.Path |_.action |_.named helper | +|GET |/photos |index | photos_path | +|GET |/photos/new |new | new_photo_path | +|POST |/photos |create | photos_path | +|GET |/photos/1 |show | photo_path | +|GET |/photos/1/edit |edit | edit_photo_path | +|PUT |/photos/1 |update | photo_path | +|DELETE |/photos/1 |destroy | photo_path | NOTE: Use +photos_path+, +new_photos_path+, etc. to generate paths for this resource. |