mirror of
https://github.com/TriliumNext/Notes.git
synced 2025-08-11 11:02:27 +08:00
11 lines
216 B
JavaScript
11 lines
216 B
JavaScript
"use strict";
|
|
|
|
const sql = require('../../services/sql');
|
|
|
|
async function getEventLog() {
|
|
return await sql.getRows("SELECT * FROM event_log ORDER BY utcDateCreated DESC");
|
|
}
|
|
|
|
module.exports = {
|
|
getEventLog
|
|
}; |