Files
meteor/examples/other/parties/server/server.js
2014-10-27 22:00:26 -07:00

11 lines
296 B
JavaScript

// All Tomorrow's Parties -- server
Meteor.publish("directory", function () {
return Meteor.users.find({}, {fields: {emails: 1, profile: 1}});
});
Meteor.publish("parties", function () {
return Parties.find(
{$or: [{"public": true}, {invited: this.userId}, {owner: this.userId}]});
});