Vulcan/packages/telescope-notifications/lib/server/publication.js

7 lines
212 B
JavaScript
Raw Normal View History

Meteor.publish('notifications', function() {
// only publish notifications belonging to the current user
if(canViewById(this.userId)){
return Notifications.find({userId:this.userId});
}
return [];
});