mirror of
https://github.com/zadam/trilium.git
synced 2024-11-17 13:14:44 +08:00
11 lines
No EOL
213 B
JavaScript
11 lines
No EOL
213 B
JavaScript
"use strict";
|
|
|
|
const sql = require('../../services/sql');
|
|
|
|
async function getEventLog() {
|
|
return await sql.getRows("SELECT * FROM event_log ORDER BY dateCreated DESC");
|
|
}
|
|
|
|
module.exports = {
|
|
getEventLog
|
|
}; |