Ruby on Rails Wednesday, June 29, 2011

A direct conversion to the routes you had in Rails 2, would be something like this:


match 'level1/level2/level3/:action', :controller => 'level1/level2/level3' 
match 'level1/level2/:action', :controller => 'level1/level2' 
match ':controller/:action/:id' 

There would be a better way of doing this with namespace or scope, but if this works fine, then let it be.

--
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To view this discussion on the web visit https://groups.google.com/d/msg/rubyonrails-talk/-/I6gzPHZfRBgJ.
To post to this group, send email to rubyonrails-talk@googlegroups.com.
To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.

No comments:

Post a Comment