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

View File

@@ -53,7 +53,6 @@ function getAllPaged(backupConfig, page, perPage, callback) {
if (result.statusCode !== 200) return callback(new Error(result.text));
if (!result.body || !util.isArray(result.body.backups)) return callback(new Error('Unexpected response'));
// [ { creationTime, boxVersion, restoreKey, dependsOn: [ ] } ] sorted by time (latest first)
return callback(null, result.body.backups);
});
}