fixup! Ref: Avatars to use modern gridfs

This commit is contained in:
David Arnold 2020-09-16 09:49:18 -05:00
parent 4c768d29ab
commit dc70c17303
No known key found for this signature in database
GPG key ID: 6D6A936E69C59D08

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;
});