Skip to content

Instantly share code, notes, and snippets.

@jgdovin
Last active August 29, 2015 14:17
Show Gist options
  • Save jgdovin/7ec7cdc325b2ced55ed5 to your computer and use it in GitHub Desktop.
Save jgdovin/7ec7cdc325b2ced55ed5 to your computer and use it in GitHub Desktop.
Meteor.publish("contacts", function(){
if (!this.userId) {
return [];
}
return Contacts.find();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment