bigbluebutton-Github/labs/meteor-client/server/publish.coffee

4 lines
200 B
CoffeeScript
Raw Normal View History

# 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})