7
0
mirror of https://github.com/pelican-dev/panel.git synced 2025-06-04 16:09:00 +02:00
2021-01-30 18:01:32 -08:00

6 lines
205 B
TypeScript

import http from '@/api/http';
export const restoreServerBackup = async (uuid: string, backup: string): Promise<void> => {
await http.post(`/api/client/servers/${uuid}/backups/${backup}/restore`);
};