added repo for API access, still strange error in Group.vue

This commit is contained in:
Tobias Kurze
2019-04-10 15:16:20 +02:00
parent c043918fb8
commit 654c78ff7c
5 changed files with 259 additions and 13 deletions

View File

@@ -43,10 +43,10 @@
this.$nextTick(() =>{
window.setInterval(() => {
this.$log.debug(getRemainingJwtValiditySeconds(this.$store.state.access_token));
// this.$log.debug(getRemainingJwtValiditySeconds(this.$store.state.access_token));
this.tokenValidity = getRemainingJwtValiditySeconds(this.$store.state.access_token);
this.refreshTokenValidity = getRemainingJwtValiditySeconds(this.$store.state.refresh_token);
this.$log.debug(this.$store.state);
// this.$log.debug(this.$store.state);
}, 1000);
});