added missing map file and unminified context menu js file

This commit is contained in:
azivner
2018-01-03 22:36:27 -05:00
parent 244a4562b1
commit 7921850186
3 changed files with 637 additions and 2 deletions

View File

@@ -3,9 +3,12 @@
const express = require('express');
const router = express.Router();
const sql = require('../../services/sql');
const utils = require('../../services/utils');
const auth = require('../../services/auth');
const sync_table = require('../../services/sync_table');
/**
* Code in this file deals with moving and cloning note tree rows. Relationship between note and parent note is unique
* for not deleted note trees. There may be multiple deleted note-parent note relationships.
*/
router.put('/:noteTreeId/move-to/:parentNoteId', auth.checkApiAuth, async (req, res, next) => {
const noteTreeId = req.params.noteTreeId;