Catalyst-Engine-Apache

 view release on metacpan or  search on metacpan

t/lib/TestAppIndexDefault/Controller/IndexChained.pm  view on Meta::CPAN

package TestAppIndexDefault::Controller::IndexChained;

use base 'Catalyst::Controller';

sub index : Chained('/') PathPart('indexchained') CaptureArgs(0) {}

sub index_endpoint : Chained('index') PathPart('') Args(0) {
    my ($self, $c) = @_;
    $c->res->body('index_chained');
}

1;



( run in 0.456 second using v1.01-cache-2.11-cpan-39bf76dae61 )