Hi! my question is simple, the answer, i don’t know… Given this in
routes.rb:
ActionController::Routing::Routes.draw do |map|
map.resources :zones do |zone|
zone.resources :customers
end
end
If i’m “standing” on CustomersController, how can i inspect
ActionController::Routing::Routes to know that ZonesController is the
controller for my parent resource?
Thank you.