2015-04-22 07:50:11 +09:00
|
|
|
Meteor.publish('userSubscribedPosts', function(terms) {
|
2015-09-03 14:22:51 +09:00
|
|
|
var parameters = Posts.parameters.get(terms);
|
2015-04-22 07:50:11 +09:00
|
|
|
var posts = Posts.find(parameters.find, parameters.options);
|
|
|
|
return posts;
|
|
|
|
});
|