storage: remove usage of secret placeholder

This commit is contained in:
Girish Ramakrishnan
2025-10-08 15:44:58 +02:00
parent 84165e5342
commit f2316ec84e
6 changed files with 92 additions and 90 deletions
+2 -2
View File
@@ -40,13 +40,13 @@ const assert = require('node:assert'),
BoxError = require('../boxerror.js');
function removePrivateFields(apiConfig) {
// in-place removal of tokens and api keys with constants.SECRET_PLACEHOLDER
// in-place removal of tokens and api keys
return apiConfig;
}
// eslint-disable-next-line no-unused-vars
function injectPrivateFields(newConfig, currentConfig) {
// in-place injection of tokens and api keys which came in with constants.SECRET_PLACEHOLDER
// in-place injection of tokens and api keys
}
async function getAvailableSize(apiConfig) {