shortcut improvements

This commit is contained in:
zadam
2022-11-25 15:29:57 +01:00
parent 70552d58ac
commit 6883b71ce7
31 changed files with 248 additions and 94 deletions

View File

@@ -70,6 +70,10 @@ function createShortcut(req) {
return specialNotesService.createShortcut(req.params.parentNoteId, req.params.type);
}
function resetShortcut(req) {
return specialNotesService.resetShortcut(req.params.noteId);
}
module.exports = {
getInboxNote,
getDayNote,
@@ -81,5 +85,6 @@ module.exports = {
saveSqlConsole,
createSearchNote,
saveSearchNote,
createShortcut
createShortcut,
resetShortcut
};