Sha256: 213ccf2fbd30215d1eb7ab57591fe3c6f95549af379d26f62d2d17c60d11da99
Contents?: true
Size: 914 Bytes
Versions: 1
Compression:
Stored size: 914 Bytes
Contents
Popolo::Engine.routes.draw do resources :areas, only: [:index, :show] resources :organizations, only: [:index, :show] resources :people, only: [:index, :show] resources :posts, only: [:index, :show] match 'areas/*path/areas' => 'areas#nested_index', as: 'nested_areas' match 'areas/*path' => 'areas#nested_show', as: 'nested_area' match 'organizations/*path/organizations' => 'organizations#nested_index', as: 'nested_organizations' match 'organizations/*path/posts/:id' => 'organizations#post', as: 'nested_organization_post' match 'organizations/*path/posts' => 'organizations#posts', as: 'nested_organization_posts' match 'organizations/*path' => 'organizations#nested_show', as: 'nested_organization' # A host application will sometimes complain about a missing `root_path`, even # if it defines a `root_path`. Setting a reasonable default here. root to: 'organizations#index' end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
popolo-0.0.2 | config/routes.rb |