On my .rb routes, I have this:
map.namespace :admin do |admin|
admin.resources :galleries do |galleries|
galleries.resources :gallery_images, :as=>'images'
end
end
rake routes show a route created as follows:
admin_gallery GET /admin/galleries/:id
and when I go to this URL in the browser:
http://192.168.2.2:3000/admin/galleries/11
I get this error:
Unknown action
No action responded to 11
But I would expect it to use show action / view, what am I doing wrong?
source
share