trilium/routes/api/recent_changes.js

25 lines
698 B
JavaScript
Raw Normal View History

2017-10-22 09:10:33 +08:00
"use strict";
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');
const wrap = require('express-promise-wrap').wrap;
router.get('/', auth.checkApiAuth, wrap(async (req, res, next) => {
const recentChanges = await sql.getAll(
2017-12-04 06:46:56 +08:00
`SELECT
notes.is_deleted AS current_is_deleted,
notes.note_title AS current_note_title,
notes_history.*
FROM
notes_history
JOIN notes USING(note_id)
ORDER BY
date_modified_to DESC
LIMIT 1000`);
res.send(recentChanges);
}));
module.exports = router;