From 89d81851ef3d46819c941b0a1dd24383f29e352c Mon Sep 17 00:00:00 2001 From: Ulf Gebhardt Date: Fri, 26 Feb 2021 01:07:39 +0100 Subject: [PATCH] console log for action logout --- frontend/src/store/store.js | 1 + 1 file changed, 1 insertion(+) diff --git a/frontend/src/store/store.js b/frontend/src/store/store.js index b59f2ceb8..2447966cc 100644 --- a/frontend/src/store/store.js +++ b/frontend/src/store/store.js @@ -66,6 +66,7 @@ export const store = new Vuex.Store({ } }, logout: async ({ commit , state }) => { + console.log('action: logout') // Are we actually logged in? if(state.session_id){ const result = await loginAPI.logout(state.session_id)