Skip to content

Instantly share code, notes, and snippets.

@brlafreniere
Created April 10, 2015 11:25
Show Gist options
  • Save brlafreniere/834ab854c18b47607568 to your computer and use it in GitHub Desktop.
Save brlafreniere/834ab854c18b47607568 to your computer and use it in GitHub Desktop.
Meteor.publish("user", function () {
return Meteor.users.find({_id: Meteor.userId()}, {fields: {'status.online': 1, username: 1, joinedRooms: 1}});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment