mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
11 lines
296 B
JavaScript
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}]});
|
|
});
|