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