Version 0.6.1 - Ajout du clear token
All checks were successful
Neutral/pipeline/head This commit looks good

This commit is contained in:
2024-01-08 11:26:56 +01:00
parent 43d65d093b
commit 1b49de6286
4 changed files with 29 additions and 1 deletions

View File

@ -340,6 +340,12 @@ module.exports.User = class {
this.register()
}
clearTokens() {
this.#sync()
this.tokens = []
this.register()
}
#sync() {
for(var userGet of usersList.keys()) {
@ -459,6 +465,12 @@ module.exports.editUser = function(settings) {
}
}
module.exports.clearTokens = function(username) {
const user = this.fetchUsers().get(username)
user.clearTokens()
}
/**
*