summaryrefslogtreecommitdiff
path: root/src/router
diff options
context:
space:
mode:
Diffstat (limited to 'src/router')
-rw-r--r--src/router/index.js3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/router/index.js b/src/router/index.js
index 33743fe0..c3d44390 100644
--- a/src/router/index.js
+++ b/src/router/index.js
@@ -98,9 +98,6 @@ const router = new VueRouter({
});
router.beforeEach((to, from, next) => {
- // Commit logout to remove XSRF-TOKEN cookie when
- // redirected to login page (eg 401 response)
- if (to.name === 'login') store.commit('authentication/logout');
if (to.matched.some(record => record.meta.requiresAuth)) {
if (store.getters['authentication/isLoggedIn']) {
next();