mirror of
https://github.com/vale981/Vulcan
synced 2025-03-09 20:16:39 -04:00
8 lines
242 B
JavaScript
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;
|
|
});
|