getBackupProviderStatus -> getProviderStatus

This commit is contained in:
Girish Ramakrishnan
2023-07-15 08:59:58 +05:30
parent 159ff1704f
commit 050a82039a
7 changed files with 12 additions and 12 deletions

View File

@@ -2,7 +2,7 @@
exports = module.exports = {
getBackupRootPath,
getBackupProviderStatus,
getProviderStatus,
getAvailableSize,
upload,
@@ -101,7 +101,7 @@ function getBackupRootPath(apiConfig) {
return apiConfig.prefix;
}
async function getBackupProviderStatus(apiConfig) {
async function getProviderStatus(apiConfig) {
assert.strictEqual(typeof apiConfig, 'object');
return { state: 'active' };