Created
August 4, 2008 13:28
-
-
Save joshuaclayton/3889 to your computer and use it in GitHub Desktop.
This file contains 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
map.namespace :admin do |admin| | |
# users | |
admin.resources :users | |
# product classifications | |
admin.namespace :products do |admin_products| | |
admin_products.resources :product_groups, :has_many => [:product_lines] | |
admin_products.resources :product_lines | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment