mirror of
https://github.com/wekan/wekan.git
synced 2025-12-17 07:50:12 +01:00
6 lines
117 B
JavaScript
6 lines
117 B
JavaScript
|
|
Meteor.publish('unsaved-edits', function() {
|
||
|
|
return UnsavedEditCollection.find({
|
||
|
|
userId: this.userId
|
||
|
|
});
|
||
|
|
});
|