storage: rename getBackupPath to getBasePath

This commit is contained in:
Girish Ramakrishnan
2022-04-04 14:08:24 -07:00
parent a05e564ae6
commit 54934c41a7
6 changed files with 21 additions and 21 deletions

View File

@@ -1,7 +1,7 @@
'use strict';
exports = module.exports = {
getBackupPath,
getBasePath,
checkPreconditions,
upload,
@@ -28,7 +28,7 @@ var assert = require('assert'),
debug = require('debug')('box:storage/noop'),
EventEmitter = require('events');
function getBackupPath(apiConfig) {
function getBasePath(apiConfig) {
assert.strictEqual(typeof apiConfig, 'object');
return '';
}