2016-12-06 1 views

Antwort

1

Nur ausschließen ihre _id:

Template.listEmployees.helpers({ 
    employees() { 
    return Meteor.users.find({ _id: { $ne: Meteor.userId() }}, { sort: { createdAt: -1 }}); 
    } 
}); 
Verwandte Themen