mirror of
https://github.com/wekan/wekan.git
synced 2025-09-22 01:50:48 +02:00
5 lines
186 B
JavaScript
5 lines
186 B
JavaScript
import Avatars from '../../models/avatars';
|
|
Meteor.publish('my-avatars', function() {
|
|
const ret = ReactiveCache.getAvatars({ userId: this.userId }, {}, true).cursor;
|
|
return ret;
|
|
});
|