This commit is contained in:
Sam Calder-Mason 2020-03-27 21:56:38 +11:00
parent 0f4258fc83
commit 7dcdb0c47b
1 changed files with 2 additions and 0 deletions

View File

@ -38,11 +38,13 @@ ptserver.get('/health', (req, res) => {
}
return res.send(JSON.stringify({ load })).end();
});
ptserver.get('/users', (req, res) => {
res.setHeader('Content-Type', 'application/json');
const users = Object.keys(ptserver_io.sockets.connected).length;
return res.send(JSON.stringify({ users })).end();
});
ptserver.get('/', (req, res) => res.send('You\'ve connected to the SLServer, you\'re probably looking for the webapp.'));
// Merge everything together