Add FIXME for selfhost backup listing

This commit is contained in:
Johannes Zellner
2016-01-19 13:20:05 +01:00
parent 3aa668aea3
commit e51234928b

View File

@@ -53,7 +53,8 @@ function getAllPaged(backupConfig, page, perPage, callback) {
var results = data.Contents.map(function (backup) {
return {
creationTime: backup.LastModified,
restoreKey: backup.Key.slice(backupConfig.prefix.length + 1)
restoreKey: backup.Key.slice(backupConfig.prefix.length + 1),
dependsOn: [] // FIXME empty dependsOn is wrong and version property is missing!!
};
});