nooktheme/resources/scripts/api/server/backups/getBackupDownloadUrl.ts
mowetentertainment1 eb5b65cec6 initial commit
2025-11-01 19:45:11 -04:00

10 lines
322 B
TypeScript

import http from '@/api/http';
export default (uuid: string, backup: string): Promise<string> => {
return new Promise((resolve, reject) => {
http.get(`/api/client/servers/${uuid}/backups/${backup}/download`)
.then(({ data }) => resolve(data.attributes.url))
.catch(reject);
});
};