trilium/src/routes/api/keys.js
2024-02-17 19:29:15 +02:00

21 lines
515 B
JavaScript

"use strict";
const keyboardActions = require('../../services/keyboard_actions');
const becca = require('../../becca/becca');
function getKeyboardActions() {
return keyboardActions.getKeyboardActions();
}
function getShortcutsForNotes() {
const labels = becca.findAttributes('label', 'keyboardShortcut');
// launchers have different handling
return labels.filter(attr => becca.getNote(attr.noteId)?.type !== 'launcher');
}
module.exports = {
getKeyboardActions,
getShortcutsForNotes
};