Created
April 3, 2015 04:05
-
-
Save brlafreniere/3c5305ca3454e14866eb to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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