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 | Introducing Catalyst | #31 |
sub foo :Chained('wiki') PathPart Args(0) {}
| "" |