Vulcan/packages/_telescope-post-by-feed/lib/server/publications.js
2016-02-17 11:28:06 +09:00

6 lines
122 B
JavaScript

Meteor.publish('feeds', function() {
if(Users.is.adminById(this.userId)){
return Feeds.find();
}
return [];
});