minor change
[catagits/Catalyst-Runtime.git] / t / lib / TestAppIndexActionName / Controller / IndexChained.pm
CommitLineData
1315d253 1package TestAppIndexActionName::Controller::IndexChained;
2ee0056e 2
3use base 'Catalyst::Controller';
4
5sub index : Chained('/') PathPart('indexchained') CaptureArgs(0) {}
6
7sub index_endpoint : Chained('index') PathPart('') Args(0) {
8 my ($self, $c) = @_;
9 $c->res->body('index_chained');
10}
11
121;