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