backup: fix listDir to return path instead of fullPath

This commit is contained in:
Girish Ramakrishnan
2025-08-02 10:24:51 +02:00
parent c935744f4c
commit 4fcaae8053
6 changed files with 25 additions and 26 deletions
+2 -2
View File
@@ -92,8 +92,8 @@ async function listDir(apiConfig, dir, batchSize, marker) {
assert.strictEqual(typeof batchSize, 'number');
assert(typeof marker !== 'undefined');
// Result: array of { fullPath, size }
// fullPath is relative to the dir being listed
// Result: array of { path, size }
// path is relative to the dir being listed
throw new BoxError(BoxError.NOT_IMPLEMENTED, 'listDir is not implemented');
}