4 lines
94 B
JavaScript
4 lines
94 B
JavaScript
Meteor.publish('my-avatars', function() {
|
|
return Avatars.find({ userId: this.userId });
|
|
});
|