зеркало из https://github.com/mozilla/MozDef.git
Read/Unread feature synchronisation with Mongo
This commit is contained in:
Родитель
9fcd6f4033
Коммит
685389d737
|
@ -337,13 +337,15 @@ if (Meteor.isClient) {
|
|||
"change .cbox": function(event) {
|
||||
var isChecked = $('.cbox').is(':checked');
|
||||
var attackId = Session.get('attackDetails').id;
|
||||
console.log(attackId, isChecked);
|
||||
if (isChecked) {
|
||||
// attackers.update()
|
||||
}
|
||||
else {
|
||||
|
||||
}
|
||||
var setModifier = { $set: {}};
|
||||
var element = attackers.findOne({"events.documentid": attackId});
|
||||
|
||||
element.events.forEach(function(evt, index) {
|
||||
if (evt.documentid === attackId) {
|
||||
setModifier.$set['events.' + index + '.read'] = isChecked;
|
||||
attackers.update({'_id': element._id}, setModifier);
|
||||
}
|
||||
});
|
||||
},
|
||||
|
||||
"click .attacks-list-item": function(event) {
|
||||
|
|
Загрузка…
Ссылка в новой задаче