From df755d4e530c2e991261528793c9952a2d907343 Mon Sep 17 00:00:00 2001 From: coreyhaines Date: Tue, 6 Mar 2012 20:46:47 -0600 Subject: Left off a : when specifying the :namespace option for a :controller path segment --- railties/guides/source/routing.textile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'railties/guides/source/routing.textile') diff --git a/railties/guides/source/routing.textile b/railties/guides/source/routing.textile index 0823fb14e3..52a95b3f5f 100644 --- a/railties/guides/source/routing.textile +++ b/railties/guides/source/routing.textile @@ -385,7 +385,7 @@ match ':controller/:action/:id/:user_id' An incoming path of +/photos/show/1/2+ will be dispatched to the +show+ action of the +PhotosController+. +params[:id]+ will be +"1"+, and +params[:user_id]+ will be +"2"+. -NOTE: You can't use +namespace+ or +:module+ with a +:controller+ path segment. If you need to do this then use a constraint on :controller that matches the namespace you require. e.g: +NOTE: You can't use +:namespace+ or +:module+ with a +:controller+ path segment. If you need to do this then use a constraint on :controller that matches the namespace you require. e.g: match ':controller(/:action(/:id))', :controller => /admin\/[^\/]+/ -- cgit v1.2.3