Version 0.6.1 - Ajout du clear token
	
		
			
	
		
	
	
		
	
		
			All checks were successful
		
		
	
	
		
			
				
	
				Neutral/pipeline/head This commit looks good
				
			
		
		
	
	
				
					
				
			
		
			All checks were successful
		
		
	
	Neutral/pipeline/head This commit looks good
				
			This commit is contained in:
		@@ -187,6 +187,11 @@ module.exports.serverIO = function(server) {
 | 
			
		||||
                PostRequest("US_EDIT", async (settings) => {
 | 
			
		||||
                    PostAnswer("US_EDIT", await users.editUser(settings))
 | 
			
		||||
                })
 | 
			
		||||
 | 
			
		||||
                PostRequest("US_CLEAR_TOKENS", async (settings) => {
 | 
			
		||||
                
 | 
			
		||||
                    PostAnswer("US_CLEAR_TOKENS", await users.clearTokens(settings))
 | 
			
		||||
                })
 | 
			
		||||
            }
 | 
			
		||||
 | 
			
		||||
            if(user.checkPermission("SETTINGS")) {
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										12
									
								
								bin/users.js
									
									
									
									
									
								
							
							
						
						
									
										12
									
								
								bin/users.js
									
									
									
									
									
								
							@@ -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()
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
/**
 | 
			
		||||
 * 
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user