widgets can now listen to sync data changes

This commit is contained in:
zadam
2019-08-06 22:39:27 +02:00
parent fcd87b3e2d
commit bfbc124e78
8 changed files with 60 additions and 9 deletions

View File

@@ -68,7 +68,7 @@ async function updateNote(req) {
const note = req.body;
const noteId = req.params.noteId;
await noteService.updateNote(noteId, note);
return await noteService.updateNote(noteId, note);
}
async function deleteNote(req) {