I have a rails engine that has routes, views, models and controllers plugged into the host application.
I mount the engine in host routes like so:
mount HelpCenter::Engine, at: "/help_center"
When I go to a view provided by the engine (it is using a layout from the host), it is getting errors when it tries to resolve routes from the navigation bar (host routes).
How do I provide routes from the host into the engine?