Add basic Excel export

This commit is contained in:
2025-05-05 22:29:45 +02:00
parent 485fe6ae53
commit b16a716c6c
8 changed files with 128 additions and 1 deletions

View File

@ -40,4 +40,11 @@ export class BackupApi {
formData: fd,
});
}
/**
* Excel export
*/
static ExcelExportURL(): string {
return APIClient.backendURL() + "/backup/xslx/export";
}
}