|
|
|
|
@ -15,23 +15,29 @@ router.get('', auth.checkApiAuth, async (req, res, next) => {
|
|
|
|
|
router.put('/:notePath', auth.checkApiAuth, async (req, res, next) => {
|
|
|
|
|
const notePath = req.params.notePath;
|
|
|
|
|
|
|
|
|
|
await sql.replace('recent_notes', {
|
|
|
|
|
note_path: notePath,
|
|
|
|
|
date_accessed: utils.nowTimestamp(),
|
|
|
|
|
is_deleted: 0
|
|
|
|
|
});
|
|
|
|
|
await sql.doInTransaction(async() => {
|
|
|
|
|
await sql.replace('recent_notes', {
|
|
|
|
|
note_path: notePath,
|
|
|
|
|
date_accessed: utils.nowTimestamp(),
|
|
|
|
|
is_deleted: 0
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
await sync_table.addRecentNoteSync(notePath);
|
|
|
|
|
await sync_table.addRecentNoteSync(notePath);
|
|
|
|
|
|
|
|
|
|
await options.setOption('start_note_tree_id', notePath);
|
|
|
|
|
await options.setOption('start_note_tree_id', notePath);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
res.send(await getRecentNotes());
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
router.delete('/:notePath', auth.checkApiAuth, async (req, res, next) => {
|
|
|
|
|
await sql.execute('UPDATE recent_notes SET is_deleted = 1 WHERE note_path = ?', [req.params.notePath]);
|
|
|
|
|
const notePath = req.params.notePath;
|
|
|
|
|
|
|
|
|
|
await sync_table.addRecentNoteSync(req.params.notePath);
|
|
|
|
|
await sql.doInTransaction(async() => {
|
|
|
|
|
await sql.execute('UPDATE recent_notes SET is_deleted = 1 WHERE note_path = ?', [notePath]);
|
|
|
|
|
|
|
|
|
|
await sync_table.addRecentNoteSync(notePath);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
res.send(await getRecentNotes());
|
|
|
|
|
});
|
|
|
|
|
|