Let say the public URL /faq is linked to the private path /faq/index in my Catalyst application:
package MyApp::Controller:FAQ;
sub index :Path {
[....]
How can I do a forward to /faq from another controller, that is how can I know that the action for the URL /faq is /faq/index ? Something like:
$c->forward(c->dispatcher->get_action_by_path( "/faq" )); # does not work