Created
May 3, 2009 04:48
-
-
Save speedmax/105841 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
# Nested routes works on ruby 1.8.6, and failed on ruby 1.9 | |
# | |
# app/controllers/admin/dashboard_controller.rb | |
# app/controllers/admin/photos_controller.rb | |
# | |
map.namespace :admin, :name_prefix => '' do |admin| | |
admin.resource :dashboard | |
admin.resource :photos | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment