rename getSignedDownloadUrl to getRestoreUrl

This commit is contained in:
Girish Ramakrishnan
2016-04-04 11:43:56 -07:00
parent 496f530b9f
commit 3135783fe3
3 changed files with 5 additions and 5 deletions

View File

@@ -2,7 +2,7 @@
exports = module.exports = {
getSignedUploadUrl: getSignedUploadUrl,
getSignedDownloadUrl: getSignedDownloadUrl,
getRestoreUrl: getRestoreUrl,
copyObject: copyObject,
getAllPaged: getAllPaged
@@ -85,7 +85,7 @@ function getSignedUploadUrl(apiConfig, filename, callback) {
});
}
function getSignedDownloadUrl(apiConfig, info, filename, callback) {
function getRestoreUrl(apiConfig, info, filename, callback) {
assert.strictEqual(typeof apiConfig, 'object');
assert.strictEqual(typeof info, 'object');
assert.strictEqual(typeof filename, 'string');