soft-deleting note will delete its content and all the revisions content, fixes #132

This commit is contained in:
azivner
2018-07-26 09:08:51 +02:00
parent 5b98c1c0f3
commit 7e4d70259f
3 changed files with 9 additions and 1 deletions

View File

@@ -223,8 +223,14 @@ async function deleteNote(branch) {
if (notDeletedBranches.length === 0) {
note.isDeleted = true;
note.content = '';
await note.save();
for (const noteRevision of await note.getRevisions()) {
noteRevision.content = '';
await noteRevision.save();
}
for (const childBranch of await note.getChildBranches()) {
await deleteNote(childBranch);
}