You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

9 lines
348 B

  1. export default function ({ route, redirect, app }) {
  2. //console.log("auth: " + $auth)
  3. console.log("app cookie: " + app.$cookies.get('email'))
  4. if (route.path.includes('/flights')) {
  5. const REDIRECT_URL = '/login/?redirect=' + route.path
  6. if (!app.$cookies.get('email')) {
  7. redirect(REDIRECT_URL)
  8. }
  9. }
  10. }