From 224e2d478a825c312128a1b3c2797d0a95fd7109 Mon Sep 17 00:00:00 2001 From: Ryan Bigg Date: Fri, 31 Dec 2010 17:50:37 +1000 Subject: Routing guide: clarify what the :as option does for scopes --- railties/guides/source/routing.textile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'railties/guides/source') diff --git a/railties/guides/source/routing.textile b/railties/guides/source/routing.textile index b1cef26932..f60d72352d 100644 --- a/railties/guides/source/routing.textile +++ b/railties/guides/source/routing.textile @@ -704,7 +704,7 @@ resources :photos This will provide route helpers such as +admin_photos_path+, +new_admin_photo_path+ etc. -To prefix a group of routes, use +:as+ with +scope+: +To prefix a group of route helpers, use +:as+ with +scope+: scope "admin", :as => "admin" do @@ -714,7 +714,7 @@ end resources :photos, :accounts -This will generate routes such as +admin_photos_path+ and +admin_accounts_path+. +This will generate routes such as +admin_photos_path+ and +admin_accounts_path+ which map to +/admin/photos+ and +/admin/accounts+ respectively. NOTE: The +namespace+ scope will automatically add +:as+ as well as +:module+ and +:path+ prefixes. -- cgit v1.2.3