2017-10-22 09:10:33 +08:00
|
|
|
"use strict";
|
|
|
|
|
2017-10-15 11:31:44 +08:00
|
|
|
const express = require('express');
|
|
|
|
const router = express.Router();
|
2017-10-16 07:47:05 +08:00
|
|
|
const sql = require('../../services/sql');
|
|
|
|
const auth = require('../../services/auth');
|
2017-10-15 11:31:44 +08:00
|
|
|
|
2017-10-16 04:32:49 +08:00
|
|
|
router.get('/:noteId', auth.checkApiAuth, async (req, res, next) => {
|
2017-10-15 11:31:44 +08:00
|
|
|
const noteId = req.params.noteId;
|
|
|
|
|
2017-10-25 07:36:37 +08:00
|
|
|
const history = await sql.getResults("select * from notes_history where note_id = ? order by date_modified_to desc", [noteId]);
|
2017-10-15 11:31:44 +08:00
|
|
|
|
|
|
|
res.send(history);
|
|
|
|
});
|
|
|
|
|
|
|
|
module.exports = router;
|