1package TestApp::Controller::Action::Chained::PathPrefix; 2 3use strict; 4use warnings; 5 6use base qw/Catalyst::Controller/; 7 8# this is kinda the same thing as: sub instance : Path {} 9# it should respond to: /action/chained/pathprefix/* 10sub instance : Chained('/') PathPrefix Args(1) { } 11 121; 13