Commands.find({ 'device': req.body.id })
.exec()
.then(cmd => {
if(cmd[0]){
Commands.remove({ 'device' : req.body.id })
.exec()
.then(result => {
res.status(200).json({
"commands": [ cmd[0].commands ],
"result":"ok",
});
})
} else {
res.status(200).json({
"result":"no",
});
}
})
.catch(err => {
console.log(err);
res.status(500).json({
error: err
});
});
old
transporter.sendMail(mailOptions).then(...).catch(...)
_id : "Pzrog-YybxlZsSCIwTDQW46zInuYyxlT"
session : {"cookie":{"originalMaxAge":604800,"expires":"2018-08-28T09:12:10.140Z","httpOnly":true,"path":"/"},"passport":{}}
expires : 2018-08-28 13:12:10.140
Ну или на крайняк, чтобы через консоль можно было развернуть на второй компе в 3 команды)