Logout with timer

This commit is contained in:
guillaume 2018-11-06 17:48:12 +01:00
parent 8c497efb46
commit 3646a9c259
9 changed files with 83 additions and 3 deletions

View file

@ -22,6 +22,7 @@ Meteor.publish('user-authenticationMethod', function(match) {
check(match, String);
return Users.find({$or: [{_id: match}, {email: match}, {username: match}]}, {
fields: {
'_id': 1,
'authenticationMethod': 1,
},
});