I have a namespaced controller like this:
class Shop::ProductsController < ApplicationController
...
end
I would like to route to this controller just as if it were not namespaced. ie. I would like to access this resource through the following URL:
/products
(ie. not /shop/products)
How can I set up this route in routes.rb