Created
December 23, 2013 23:40
-
-
Save digilord/8106681 to your computer and use it in GitHub Desktop.
Publish and subscribe that are reactive for groups
This file contains 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
Meteor.publish('groups', function(group_id) { | |
return Groups.find({_id: group_id}); | |
}); |
This file contains 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
Deps.autorun(function(){ | |
user = Meteor.user().groupId | |
if(typeof user.groupId != 'undefined' && user.groupId != '') { | |
Meteor.subscribe('groups', user.groupId) | |
} | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment