added "edited notes on date" widget

This commit is contained in:
zadam
2019-09-07 10:11:59 +02:00
parent e828ef370d
commit b069436039
10 changed files with 89 additions and 5 deletions

View File

@@ -135,6 +135,8 @@ function register(app) {
apiRoute(POST, '/api/notes/relation-map', notesApiRoute.getRelationMap);
apiRoute(PUT, '/api/notes/:noteId/change-title', notesApiRoute.changeTitle);
apiRoute(GET, '/api/edited-notes/:date', noteRevisionsApiRoute.getEditedNotesOnDate);
apiRoute(PUT, '/api/notes/:noteId/clone-to/:parentNoteId', cloningApiRoute.cloneNoteToParent);
apiRoute(PUT, '/api/notes/:noteId/clone-after/:afterBranchId', cloningApiRoute.cloneNoteAfter);