mirror of
https://github.com/pelican-dev/panel.git
synced 2025-05-21 01:04:44 +02:00
10 lines
287 B
TypeScript
10 lines
287 B
TypeScript
import http from '@/api/http';
|
|
|
|
export default (uuid: string, backup: string): Promise<void> => {
|
|
return new Promise((resolve, reject) => {
|
|
http.delete(`/api/client/servers/${uuid}/backups/${backup}`)
|
|
.then(() => resolve())
|
|
.catch(reject);
|
|
});
|
|
};
|