launchbar WIP

This commit is contained in:
zadam
2022-08-07 13:23:03 +02:00
parent 8d608c3c1c
commit fc920becac
6 changed files with 50 additions and 5 deletions

View File

@@ -66,6 +66,10 @@ function getHoistedNote() {
return becca.getNote(cls.getHoistedNoteId());
}
function createShortcut(req) {
return specialNotesService.createShortcut(req.params.parentNoteId, req.params.type);
}
module.exports = {
getInboxNote,
getDayNote,
@@ -76,5 +80,6 @@ module.exports = {
createSqlConsole,
saveSqlConsole,
createSearchNote,
saveSearchNote
saveSearchNote,
createShortcut
};