1
0
Fork 0
mirror of https://github.com/Ylianst/MeshCentral.git synced 2025-03-09 15:40:18 +00:00

Added client side handler for lastseen

This commit is contained in:
Noah Zalev 2021-07-24 23:55:07 -04:00
parent 18c367040d
commit b3be0120fa
2 changed files with 10 additions and 3 deletions

View file

@ -5554,12 +5554,11 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use
for (var j in docs) {
var nodeid = docs[j]._id.substring(2);
if (LCs[nodeid] != null) {
delete docs[j]._id;
LCs[nodeid] = docs[j];
LCs[nodeid] = docs[j].time;
}
}
console.log(LCs);
try { ws.send(JSON.stringify({ action: 'lastseen', lastconnects: LCs })); } catch (ex) { }
});
});
}