Notes/src/routes/api/event_log.js

11 lines
213 B
JavaScript
Raw Normal View History

2017-11-03 23:00:35 -04:00
"use strict";
const sql = require('../../services/sql');
2018-03-30 15:34:07 -04:00
async function getEventLog() {
2018-05-26 12:38:25 -04:00
return await sql.getRows("SELECT * FROM event_log ORDER BY dateCreated DESC");
2018-03-30 15:34:07 -04:00
}
2017-11-03 23:00:35 -04:00
2018-03-30 15:34:07 -04:00
module.exports = {
getEventLog
};