From: charleswrayjr Date: Tue, 9 Sep 2025 14:15:25 +0000 (-0500) Subject: Adding available clients section to VPN page. X-Git-Url: https://git.phasecustomsoft.com/static/git-favicon.png?a=commitdiff_plain;h=5b928dec73a441c68d6c9784174a10b8affa0a34;p=phs-admin.git Adding available clients section to VPN page. --- diff --git a/src/app/views/VPN/VPN.jsx b/src/app/views/VPN/VPN.jsx index 20161f7..2d9360b 100644 --- a/src/app/views/VPN/VPN.jsx +++ b/src/app/views/VPN/VPN.jsx @@ -104,6 +104,8 @@ const VPN = () => { return row.hasCertificate ? 'Yes' : 'No'; }, header: 'Active Certificate' }, { accessorFn: row => clients.find( c => c.name === row.clientName ) ? 'Yes' : 'No', header: 'Connected' }, + { accessorFn: row => row.hasCertificate ? 'Yes' : 'No', header: 'Revoked' }, + { accessorFn: row => row.hasOvpn ? 'Yes' : 'No', header: 'Has Profile' }, ]} data={availableClients} />