note cache breakup into classes, WIP

This commit is contained in:
zadam
2020-05-16 23:12:29 +02:00
parent e3071e630a
commit dcd371b5b1
23 changed files with 1174 additions and 1170 deletions

View File

@@ -5,7 +5,7 @@ const repository = require('./repository');
const Branch = require('../entities/branch');
const syncTableService = require('./sync_table');
const protectedSessionService = require('./protected_session');
const noteCacheService = require('./note_cache');
const noteCacheService = require('./note_cache/note_cache.js');
async function getNotes(noteIds) {
// we return also deleted notes which have been specifically asked for
@@ -197,4 +197,4 @@ module.exports = {
validateParentChild,
sortNotesAlphabetically,
setNoteToParent
};
};