meteor-collection-softremovable
meteor-collection-softremovable copied to clipboard
Add soft remove to collections
Add support to aldeed:autoform 6+. Today the package support just 4 and 5 version, very old.
I'm using meteor-collection-softremovable in my app and it works fine. But now I want to show removed documents to my users in a list. I'm using Tabular, but it doesn't...
Add index for all soft removed and for all except soft removed. Maybe add index on all docs too?
`softRemove` used to go through collection hook: https://github.com/matb33/meteor-collection-hooks. There's no working after hook currently.
Now softRemove and restore trigger update hooks. Only do this change when #12 is getting implemented.
Restoring a document returns 0 even on successful restore whereas it should be returning 1 just like it does when softremoved.
It would be great if softremove and restore had callbacks so that we could asynchronously act upon its completion or error. _We can currently at least act on softremove sychronously,...
When `removed: true` is set as an option we should include soft removed documents when updating document(s). Option name should be the same as the configured field name. ``` js...