Removed usless console logs

ref #68
This commit is contained in:
2021-02-18 17:03:05 +01:00
parent a4c955ce85
commit 7278648642
6 changed files with 0 additions and 11 deletions

View File

@@ -23,9 +23,7 @@ const store = () => {
});
},
refreshAuth() {
console.log('refreshing auth');
AuthService.authControllerRefresh({ token: state.auth.refresh_token }).then((auth) => {
console.log('got new auth');
OpenAPI.TOKEN = auth.access_token;
const jwtinfo = JSON.parse(atob(auth.access_token.split('.')[1]));
state.jwtinfo = jwtinfo;