Files
P42_wssGateway/actions/notifications.js
T
STEINNI de69b3d4de 2nd
2025-09-11 20:50:34 +00:00

13 lines
326 B
JavaScript

module.exports.methods = {
async action_NOTIFS(action, payload, reqid){
let reply = {
'action': action,
'payload': await this.getAwaitingNotifs(),
'success': true,
};
if(reqid) reply.reqid = reqid;
this.send(JSON.stringify(reply));
},
}