Add a way to see the backup location

This commit is contained in:
mfcar 2023-09-20 22:33:58 +01:00
parent 9519f6418d
commit bfa87a2131
No known key found for this signature in database
5 changed files with 30 additions and 1 deletions

View file

@ -10,6 +10,12 @@ class BackupController {
})
}
getBackupLocation(req, res) {
res.json({
backupLocation: this.backupManager.backupLocation
})
}
create(req, res) {
this.backupManager.requestCreateBackup(res)
}