mirror of
https://github.com/wekan/wekan.git
synced 2025-09-22 01:50:48 +02:00
6 lines
137 B
JavaScript
6 lines
137 B
JavaScript
Meteor.publish('unsaved-edits', function() {
|
|
const ret = UnsavedEditCollection.find({
|
|
userId: this.userId,
|
|
});
|
|
return ret;
|
|
});
|