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

@@ -3,7 +3,7 @@
const sql = require('../../services/sql');
const protectedSessionService = require('../../services/protected_session');
const noteService = require('../../services/notes');
const noteCacheService = require('../../services/note_cache');
const noteCacheService = require('../../services/note_cache/note_cache.js');
async function getRecentChanges(req) {
const {ancestorNoteId} = req.params;
@@ -102,4 +102,4 @@ async function getRecentChanges(req) {
module.exports = {
getRecentChanges
};
};