@lifeaitools/clauth 1.4.6 → 1.4.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/cli/commands/serve.js +1 -1
- package/package.json +1 -1
package/cli/commands/serve.js
CHANGED
|
@@ -3503,7 +3503,7 @@ function createServer(initPassword, whitelist, port, tunnelHostnameInit = null,
|
|
|
3503
3503
|
const service = deleteMatch[1].toLowerCase();
|
|
3504
3504
|
try {
|
|
3505
3505
|
const { token, timestamp } = deriveToken(password, machineHash);
|
|
3506
|
-
const result = await api.removeService(password, machineHash, token, timestamp, service,
|
|
3506
|
+
const result = await api.removeService(password, machineHash, token, timestamp, service, `CONFIRM REMOVE ${service.toUpperCase()}`);
|
|
3507
3507
|
if (result.error) return strike(res, 502, result.error);
|
|
3508
3508
|
return ok(res, { ok: true, deleted: service });
|
|
3509
3509
|
} catch (err) {
|