Vulcan/packages/telescope-notifications/lib/server/publication.js
2014-09-20 09:57:09 +09:00

7 lines
No EOL
212 B
JavaScript

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