make getBackupUrl return id as well

This commit is contained in:
Girish Ramakrishnan
2016-04-04 12:45:09 -07:00
parent 82c74e6787
commit ec160fe45f
3 changed files with 6 additions and 6 deletions
+1 -1
View File
@@ -75,7 +75,7 @@ function getBackupUrl(apiConfig, filename, callback) {
var url = s3.getSignedUrl('putObject', params);
callback(null, { url: url });
callback(null, { url: url, id: filename });
});
}