From ba6a9c76b3a261f0d0a8df3f5072478c60a3d071 Mon Sep 17 00:00:00 2001 From: charleswrayjr Date: Mon, 8 Sep 2025 20:59:06 -0500 Subject: [PATCH] Cleaning up the revoke client function and starting on the create client function in the vpn controller. --- src/controllers/vpn.controller.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/controllers/vpn.controller.js b/src/controllers/vpn.controller.js index 06ceafe..a90b2fe 100644 --- a/src/controllers/vpn.controller.js +++ b/src/controllers/vpn.controller.js @@ -166,6 +166,7 @@ module.exports = { conn.end(); if (code === 0) { const clients = parseVpnStatus( output ); + console.log( clients ); res.json( { clients } ); } else { const error = new createError( 500, `Command failed: ${ output }` ); -- 2.43.0