소스 검색

redirect to app if user authenticated

pull/342/head
Guillaume Vincent 8 년 전
부모
커밋
6ee0784391
1개의 변경된 파일14개의 추가작업 그리고 15개의 파일을 삭제
  1. +14
    -15
      src/router.js

+ 14
- 15
src/router.js 파일 보기

@@ -35,22 +35,21 @@ router.redirect({
});

router.beforeEach(transition => {
if (transition.to.auth_required) {
http.auth.checkAuth()
.then(() => {
if (transition.to.path === '/') {
transition.redirect('/app/');
} else {
transition.next();
}
})
.catch(() => {
http.auth.checkAuth()
.then(() => {
if (transition.to.path === '/') {
transition.redirect('/app/');
} else {
transition.next();
}
})
.catch(() => {
if (transition.to.auth_required) {
transition.redirect('/login/');
});
} else {
transition.next();
}
} else {
transition.next();
}
});
});


router.start(App, '#app');

불러오는 중...
취소
저장