mirror of
https://github.com/wekan/wekan.git
synced 2025-12-16 15:30:13 +01:00
This new draft saving system is currently only implemented for the card description and comment. We need better a component inheritance/composition model to support this for all editable fields. Fixes #186
5 lines
117 B
JavaScript
5 lines
117 B
JavaScript
Meteor.publish('unsaved-edits', function() {
|
|
return UnsavedEditCollection.find({
|
|
userId: this.userId
|
|
});
|
|
});
|