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
The onAuthRequired function has the to and from variables referenced backwards. Vue Router middleware conforms to the (to, from next) pattern. https://router.vuejs.org/guide/advanced/navigation-guards.html#global-guards
onAuthRequired
to
from
(to, from next)
samples-js-vue/custom-login/src/router/index.js
Line 66 in 89baf66
The text was updated successfully, but these errors were encountered:
🐛 Fixes order of onAuthRequired variables
d351403
The to/from variables on the onAuthRequired function were backwards. Resolves: okta#22
No branches or pull requests
The
onAuthRequired
function has theto
andfrom
variables referenced backwards. Vue Router middleware conforms to the(to, from next)
pattern.https://router.vuejs.org/guide/advanced/navigation-guards.html#global-guards
samples-js-vue/custom-login/src/router/index.js
Line 66 in 89baf66
The text was updated successfully, but these errors were encountered: