From 9ed53787b57f9072ea7d239b2bf229a93e336363 Mon Sep 17 00:00:00 2001 From: charleswrayjr Date: Tue, 9 Sep 2025 14:05:00 -0500 Subject: [PATCH] Adding disconnect, getStatus, and restart to the vpn.controller.js and associated routes in vpn.routes.js. --- 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 fd0756f..1a33f0e 100644 --- a/src/controllers/vpn.controller.js +++ b/src/controllers/vpn.controller.js @@ -317,6 +317,7 @@ module.exports = { } }, getStatus: async ( req, res, next ) => { + logger.warn( 'Getting VPN status'); try { const conn = new Client(); conn.on('ready', () => { -- 2.43.0