[Catalyst] Default running over chained
xenoterracide at gmail.com
xenoterracide at gmail.com
Tue Jan 26 22:13:17 GMT 2010
I added a default action to my user controller. When I access /user/ a chained action is supposed to run, and it ran just fine until i added the default action. Now the default runs instead of the chained. No index exists in the controller
sub base :Chained('/') : PathPrefix : CaptureArgs(0) { ... }
sub list : Chained('base') : PathPart('') : Args(0) { ... }
sub default : Path { ... }
More information about the Catalyst
mailing list