Skip to content

Instantly share code, notes, and snippets.

@Pent
Created September 29, 2013 20:44
Show Gist options
  • Select an option

  • Save Pent/6756366 to your computer and use it in GitHub Desktop.

Select an option

Save Pent/6756366 to your computer and use it in GitHub Desktop.
returning more user fields
Meteor.publish(null, function() {
return Meteor.users.find({_id: this.userId}, {fields: {username: 1, emails: 1, profile: 1, admin: 1}});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment