update to meteor version 2.12

This commit is contained in:
Brian McGonagill 2023-06-09 09:51:11 -05:00
parent 5b49720557
commit 07a8496542
7 changed files with 77 additions and 175 deletions

View file

@ -37,5 +37,12 @@ Template.userMgmt.events({
let userId = this._id;
// take action
console.log("Delete called on : " + userId);
Session.set("deleteId", userId);
Session.set("item", "User");
Session.set("view", "Users");
Session.set("method", "delete.userFromSys");
Meteor.setTimeout(function() {
$('.modal').open('modalDelete');
}, 150);
}
});