Chained
- provides url like /wiki/<page name>/latest
- easily add new actions:
sub foo :Chained('wiki') PathPart Args(0) {}
- now /wiki/<page name>/foo is a URL
- dispatch order, left-first
- CaptureArgs (capture /.../)
- Args (endpoint, consume /...)
| Catalyst | Improving your Catalyst Application | #14 |
sub foo :Chained('wiki') PathPart Args(0) {}
| Infinity Interactive |