mirror of
https://github.com/zadam/trilium.git
synced 2024-11-13 19:26:28 +08:00
15 lines
436 B
JavaScript
15 lines
436 B
JavaScript
const becca = require('../../src/becca/becca');
|
|
const beccaLoader = require('../../src/becca/becca_loader');
|
|
const cls = require('../../src/services/cls');
|
|
|
|
module.exports = () => {
|
|
cls.init(() => {
|
|
beccaLoader.load();
|
|
|
|
for (const note of Object.values(becca.notes)) {
|
|
if (note.hasLabel('calendarRoot')) {
|
|
note.addLabel('excludeFromNoteMap', "", true);
|
|
}
|
|
}
|
|
});
|
|
};
|