Vulcan/packages/telescope-subscribe-to-posts/lib/server/publications.js

8 lines
242 B
JavaScript

Meteor.publish('userSubscribedPosts', function(terms) {
terms.userId = this.userId; // add userId to terms
var parameters = Posts.parameters.get(terms);
var posts = Posts.find(parameters.find, parameters.options);
return posts;
});