making sure that recent notes don't try to display deleted notes

This commit is contained in:
azivner 2017-12-18 22:37:31 -05:00
parent 3edbb65b0f
commit f5e87db988

View file

@ -34,7 +34,17 @@ router.put('/:noteTreeId/:notePath', auth.checkApiAuth, async (req, res, next) =
}); });
async function getRecentNotes() { async function getRecentNotes() {
return await sql.getResults("SELECT * FROM recent_notes WHERE is_deleted = 0 ORDER BY date_accessed DESC"); return await sql.getResults(`
SELECT
recent_notes.*
FROM
recent_notes
JOIN notes_tree USING(note_tree_id)
WHERE
recent_notes.is_deleted = 0
AND notes_tree.is_deleted = 0
ORDER BY
date_accessed DESC`);
} }
module.exports = router; module.exports = router;