mirror of
https://github.com/pterodactyl/panel.git
synced 2026-02-06 06:17:50 -06: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);
|
|
});
|
|
};
|