We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Is support for hooks and named routes possible?
router.on( '/': as: 'home' uses: (params, query) -> console.log 'Router: Home Route...' renderHome() hooks: before: -> console.log 'BEFORE' after: -> console.log 'AFTER' )
The text was updated successfully, but these errors were encountered:
Support of hooks in named routes #60
c35cb2c
It's done. Released in 3.4.1. You can do:
3.4.1
router.on({ 'products': { as: 'products', uses: handler }, 'products/:productId': { as: 'products.id', uses: handler, hooks: { before, after } } });
Sorry, something went wrong.
No branches or pull requests
Is support for hooks and named routes possible?
The text was updated successfully, but these errors were encountered: