Remove unused information within backup listing

This commit is contained in:
Johannes Zellner
2015-12-30 20:31:00 +01:00
parent 41c597801f
commit 030faaa5d1
3 changed files with 2 additions and 10 deletions
+1 -1
View File
@@ -62,7 +62,7 @@ function getAllPaged(page, perPage, callback) {
api(backupConfig.provider).getAllPaged(backupConfig, page, perPage, function (error, backups) {
if (error) return callback(new BackupsError(BackupsError.EXTERNAL_ERROR, error));
return callback(null, backups); // [ { creationTime, boxVersion, restoreKey, dependsOn: [ ] } ] sorted by time (latest first
return callback(null, backups); // [ { creationTime, restoreKey } ] sorted by time (latest first
});
});
}