Skip to content

Instantly share code, notes, and snippets.

@digilord
Created December 23, 2013 23:40
Show Gist options
  • Save digilord/8106681 to your computer and use it in GitHub Desktop.
Save digilord/8106681 to your computer and use it in GitHub Desktop.
Publish and subscribe that are reactive for groups
Meteor.publish('groups', function(group_id) {
return Groups.find({_id: group_id});
});
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