diff --git a/src/routes/routes.js b/src/routes/routes.js index e80475504..27d6e9a18 100644 --- a/src/routes/routes.js +++ b/src/routes/routes.js @@ -158,6 +158,7 @@ function register(app) { apiRoute(GET, '/api/sync/labels/:labelId', syncApiRoute.getLabel); apiRoute(GET, '/api/sync/api_tokens/:apiTokenId', syncApiRoute.getApiToken); apiRoute(PUT, '/api/sync/notes', syncApiRoute.updateNote); + apiRoute(PUT, '/api/sync/branches', syncApiRoute.updateBranch); apiRoute(PUT, '/api/sync/note_revisions', syncApiRoute.updateNoteRevision); apiRoute(PUT, '/api/sync/note_reordering', syncApiRoute.updateNoteReordering); apiRoute(PUT, '/api/sync/options', syncApiRoute.updateOption);