-
-
Save ahoward/7cef59ce74593b79ab31 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| root :to => 'communities#index', :as => :root | |
| scoped_community_routes = proc do | |
| resources :topics do | |
| end | |
| resources :replies do | |
| end | |
| resources :profiles do | |
| end | |
| end | |
| instance_eval(&scoped_community_routes) | |
| resources :communities do | |
| end | |
| scope ':community' do | |
| match '' => 'communities#show' | |
| match '/' => 'communities#show' | |
| instance_eval(&scoped_community_routes) | |
| end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment