add button to erase deleted notes now into the options

This commit is contained in:
zadam
2020-12-06 22:11:49 +01:00
parent 58555b3660
commit e56979c482
6 changed files with 33 additions and 5 deletions

View File

@@ -193,6 +193,10 @@ function duplicateSubtree(req) {
return noteService.duplicateSubtree(noteId, parentNoteId);
}
function eraseDeletedNotesNow() {
noteService.eraseDeletedNotesNow();
}
module.exports = {
getNote,
updateNote,
@@ -204,5 +208,6 @@ module.exports = {
setNoteTypeMime,
getRelationMap,
changeTitle,
duplicateSubtree
duplicateSubtree,
eraseDeletedNotesNow
};