Rename /viewsecrets to /api/secrets/view

This commit is contained in:
valadaptive
2023-12-03 09:19:25 -05:00
parent db4da0b8aa
commit 2180610363
2 changed files with 2 additions and 2 deletions

View File

@ -49,7 +49,7 @@ function updateSecretDisplay() {
} }
async function viewSecrets() { async function viewSecrets() {
const response = await fetch('/viewsecrets', { const response = await fetch('/api/secrets/view', {
method: 'POST', method: 'POST',
headers: getRequestHeaders(), headers: getRequestHeaders(),
}); });

View File

@ -169,7 +169,7 @@ function registerEndpoints(app, jsonParser) {
} }
}); });
app.post('/viewsecrets', jsonParser, async (_, response) => { app.post('/api/secrets/view', jsonParser, async (_, response) => {
const allowKeysExposure = getConfigValue('allowKeysExposure', false); const allowKeysExposure = getConfigValue('allowKeysExposure', false);
if (!allowKeysExposure) { if (!allowKeysExposure) {