4 lines
200 B
CoffeeScript
Executable File
4 lines
200 B
CoffeeScript
Executable File
# Publish only the users that are in the particular meetingId
|
|
# On the client side we pass the meetingId parameter
|
|
Meteor.publish 'users', (meetingId) ->
|
|
Meteor.Users.find({meetingId: meetingId}) |