misc_pterodactyl-panel/resources/scripts/api/server/users/deleteSubuser.ts

10 lines
285 B
TypeScript
Raw Normal View History

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);
});
};