mirror of
				https://github.com/pelican-dev/panel.git
				synced 2025-10-29 16:16:52 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			10 lines
		
	
	
		
			285 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			285 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| import http from '@/api/http';
 | |
| 
 | |
| export default (uuid: string, userId: string): Promise<void> => {
 | |
|     return new Promise((resolve, reject) => {
 | |
|         http.delete(`/api/client/servers/${uuid}/users/${userId}`)
 | |
|             .then(() => resolve())
 | |
|             .catch(reject);
 | |
|     });
 | |
| };
 | 
