2015-01-20 11:59:12 +09:00
|
|
|
Meteor.publish('userSubscribedPosts', function(terms) {
|
2015-04-20 13:57:37 +09:00
|
|
|
var parameters = Posts.getSubParams(terms);
|
2015-01-20 11:59:12 +09:00
|
|
|
var posts = Posts.find(parameters.find, parameters.options);
|
|
|
|
return posts;
|
|
|
|
});
|