minerva
minerva copied to clipboard
Routes to Match New Controller Methods
Also will need routes to match the admin_ controller methods. This can be done with continuation routes. For example:
Dispatcher::config(array(
'rules' => array(
'admin' => array('action' => 'admin_{:action}')
)
));