Skip to content

Instantly share code, notes, and snippets.

@brlafreniere
Created April 3, 2015 04:27
Show Gist options
  • Save brlafreniere/c16877ec3ac40ee6ffc8 to your computer and use it in GitHub Desktop.
Save brlafreniere/c16877ec3ac40ee6ffc8 to your computer and use it in GitHub Desktop.
if Meteor.isServer
Meteor.publish "userData", () ->
if this.userId
return Meteor.users.find {_id: this.userId}, {fields: {'status.online': 1}}
else
this.read()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment