fixup! Ref: Avatars to use modern gridfs

This commit is contained in:
David Arnold 2020-09-16 09:49:18 -05:00 committed by Denis Perov
parent 412b60f794
commit eb747ef8e9

View file

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