I am using a namespaced controller as described here
When using:
map.with_options(:namespace => "admin") do |admin| admin.resources :photos, :videos end
and then attempting to use the path/url helper new_photo_path it links to photos/new instead of admin/photos/new as expected.
How can I acheive the expected behavior?