Vulcan/packages/telescope-post-by-feed/lib/server/publications.js

7 lines
115 B
JavaScript
Raw Normal View History

2014-12-18 16:01:18 +09:00
Meteor.publish('feeds', function() {
2014-12-13 22:55:10 +08:00
if(isAdminById(this.userId)){
2014-12-18 16:01:18 +09:00
return Feeds.find();
2014-12-13 22:55:10 +08:00
}
return [];
});