renamed shortcuts to launchers

This commit is contained in:
zadam
2022-12-01 10:16:57 +01:00
parent b55c2d3dbc
commit 1a6c9be065
16 changed files with 164 additions and 164 deletions

View File

@@ -66,12 +66,12 @@ function getHoistedNote() {
return becca.getNote(cls.getHoistedNoteId());
}
function createShortcut(req) {
return specialNotesService.createShortcut(req.params.parentNoteId, req.params.shortcutType);
function createLauncher(req) {
return specialNotesService.createLauncher(req.params.parentNoteId, req.params.launcherType);
}
function resetShortcut(req) {
return specialNotesService.resetShortcut(req.params.noteId);
function resetLauncher(req) {
return specialNotesService.resetLauncher(req.params.noteId);
}
module.exports = {
@@ -85,6 +85,6 @@ module.exports = {
saveSqlConsole,
createSearchNote,
saveSearchNote,
createShortcut,
resetShortcut
createLauncher,
resetLauncher
};