
OX::RouteBuilder::ControllerAction - OX::RouteBuilder which routes to an action method in a controller class

version 0.03

package MyApp;
use OX;
has controller => (
is => 'ro',
isa => 'MyApp::Controller',
);
router as {
route '/' => 'controller.index';
};

This is an OX::RouteBuilder which routes to action methods on a controller class. The action_spec should be a string in the form "$controller.$action", where $controller is the name of a service which provides a controller instance, and $action is the name of a method on that class.


This software is copyright (c) 2012 by Infinity Interactive.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.