mirror of
https://github.com/jetzig-framework/jetzig.git
synced 2025-05-14 14:06:08 +00:00

Permit setting template during view render with `request.setTemplate()` Permit middleware to define custom routes to static content with `pub const Routes` (implemented for something no longer needed but seems useful anyway). Implement globbing on custom routes, `/foo/:bar*` will glob all path segments including and after `/foo/...`, e.g. `/foo/bar/baz/qux` will pass invoke the custom view function with an array of `bar`, `baz`, `qux` as first argument (instead of typical resource ID).