Add OAuth Personal Access Token management

This commit is contained in:
Bubka
2021-10-29 17:12:58 +02:00
parent c9dee47be3
commit 55a47a75f4
14 changed files with 377 additions and 188 deletions

View File

@ -19,6 +19,13 @@ Vue.mixin({
this.$router.push({ name: 'login' })
},
exitSettings: function(event) {
if (event) {
this.$notify({ clean: true })
this.$router.push({ name: 'accounts' })
}
}
}
})