mirror of
https://github.com/wekan/wekan.git
synced 2025-12-25 03:40:13 +01:00
4 lines
145 B
JavaScript
4 lines
145 B
JavaScript
import Avatars from '../../models/avatars';
|
|
Meteor.publish('my-avatars', function() {
|
|
return Avatars.find({ userId: this.userId }).cursor;
|
|
});
|