Refactor backup components to utilize a unified DatabaseType type. Update AddBackup and UpdateBackup components to handle database type selection for compose backups. Enhance UI to allow users to select database types dynamically. Update backup schema to include databaseType field for better metadata management.

This commit is contained in:
Mauricio Siu
2025-04-27 23:00:26 -06:00
parent 8d91053c3a
commit 6b9765a26c
4 changed files with 97 additions and 59 deletions

View File

@@ -178,5 +178,6 @@ export const apiUpdateBackup = createSchema
keepLatestCount: true,
serviceName: true,
metadata: true,
databaseType: true,
})
.required();