2
0

avatars.js 145 B

1234
  1. import Avatars from '../../models/avatars';
  2. Meteor.publish('my-avatars', function() {
  3. return Avatars.find({ userId: this.userId }).cursor;
  4. });