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)); }, }