Shallow Routing
1. Use of shallow
Section titled “1. Use of shallow”One way to avoid deep nesting (as recommended above) is to generate the collection actions scoped under the parent, so as to get a sense of the hierarchy, but to not nest the member actions. In other words, to only build routes with the minimal amount of information to uniquely identify the resource, like this:
resources :articles, shallow: true do resources :comments resources :quotes resources :draftsendThe shallow method of the DSL creates a scope inside of which every nesting is shallow. This generates the same routes as the previous example:
shallow do resources :articles do resources :comments resources :quotes resources :drafts endendThere exist two options for scope to customize shallow routes. :shallow_path prefixes member paths with the specified parameter:
scope shallow_path: "sekret" do resources :articles do resources :comments, shallow: true endendUse Rake Command for get generated routes as define below:
rake routes