Skip to content

Instantly share code, notes, and snippets.

@brlafreniere
Created April 3, 2015 04:05
Show Gist options
  • Save brlafreniere/3c5305ca3454e14866eb to your computer and use it in GitHub Desktop.
Save brlafreniere/3c5305ca3454e14866eb to your computer and use it in GitHub Desktop.
# in `users` helper
return Meteor.users.find({'status.online': true})
# in mongodb client:
db.getCollection('users').find({'status.online': true})
# returns 2 results
# in the client, I have two users logged in, but each user
# can only see their own user name in the list of currently
# logged in users.
# I need to have each user see all online users.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment