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