13 lines
324 B
JavaScript
13 lines
324 B
JavaScript
export const 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));
|
|
},
|
|
|
|
} |