Vulcan/packages/telescope-post-by-feed/lib/server/publications.js
2015-04-27 17:14:07 +09:00

6 lines
122 B
JavaScript

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