mirror of
https://github.com/zadam/trilium.git
synced 2025-03-01 14:22:32 +01:00
event log now shows full path of notes and works with encryption
This commit is contained in:
parent
ee07d2d2d8
commit
869bccea18
@ -20,7 +20,7 @@ async function showEventLog() {
|
||||
if (event.note_id) {
|
||||
const noteLink = $("<a>", {
|
||||
href: 'app#' + event.note_id,
|
||||
text: event.note_title
|
||||
text: getFullName(event.note_id)
|
||||
}).prop('outerHTML');
|
||||
|
||||
console.log(noteLink);
|
||||
@ -30,7 +30,6 @@ async function showEventLog() {
|
||||
|
||||
const eventEl = $('<li>').html(dateTime + " - " + event.comment);
|
||||
|
||||
|
||||
eventLogList.append(eventEl);
|
||||
}
|
||||
}
|
||||
|
@ -7,8 +7,7 @@ const sql = require('../../services/sql');
|
||||
router.get('', async (req, res, next) => {
|
||||
await deleteOld();
|
||||
|
||||
const result = await sql.getResults("SELECT e.id, e.note_id, e.comment, e.date_added, n.note_title " +
|
||||
"FROM event_log e LEFT JOIN notes n ON e.note_id = n.note_id ORDER BY date_added DESC");
|
||||
const result = await sql.getResults("SELECT * FROM event_log ORDER BY date_added DESC");
|
||||
|
||||
res.send(result);
|
||||
});
|
||||
|
Loading…
x
Reference in New Issue
Block a user