]> PHS Git Server - phs-admin.git/commitdiff
Adding available clients section to VPN page.
authorcharleswrayjr <charleswrayjr@gmail.com>
Tue, 9 Sep 2025 14:15:25 +0000 (09:15 -0500)
committercharleswrayjr <charleswrayjr@gmail.com>
Tue, 9 Sep 2025 14:15:25 +0000 (09:15 -0500)
src/app/views/VPN/VPN.jsx

index 20161f71774286e2853a4a20102e4624299876b1..2d9360b000d2d785953676472eeb75dc8d3a9ea4 100644 (file)
@@ -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}
       />