Answer the question
In order to leave comments, you need to log in
VueJs, page hangs when two redirects conflict, how to fix?
export default function({$auth, redirect}) {
// Если не подтверждена почта
if ($auth.loggedIn && !$auth.user.email_verified_at) {
return redirect('/auth/verify-email')
}
}
Answer the question
In order to leave comments, you need to log in
Decided so.
export default function({$auth, route, redirect}) {
// Если не подтверждена почта
if ($auth.loggedIn && !$auth.user.email_verified_at) {
// Не вызывать переадресацию на /auth/verify-email
if (route.path !== '/auth/verify-email') {
return redirect('/auth/verify-email')
}
}
}
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question