summaryrefslogtreecommitdiffstats
path: root/webapp/src/main.js
diff options
context:
space:
mode:
Diffstat (limited to 'webapp/src/main.js')
-rw-r--r--webapp/src/main.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/webapp/src/main.js b/webapp/src/main.js
index 53064ca..4eb4636 100644
--- a/webapp/src/main.js
+++ b/webapp/src/main.js
@@ -60,7 +60,7 @@ Vue.use(VueTouch)
axios.interceptors.response.use(null, error => {
if (error && (error.response.data.status === 'TOKEN_INVALID' || error.response.data.status === 'TOKEN_MISSING')) {
- axios.post('/api/logout').then(response => { router.push('/login') })
+ axios.post('/api/authentication/logout').then(response => { router.push('/login') })
}
return Promise.reject(error)
})