mirror of
				https://github.com/zadam/trilium.git
				synced 2025-10-31 18:36:30 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			23 lines
		
	
	
		
			582 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			582 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| "use strict";
 | |
| 
 | |
| const express = require('express');
 | |
| const router = express.Router();
 | |
| const sql = require('../../services/sql');
 | |
| 
 | |
| router.get('', async (req, res, next) => {
 | |
|     await deleteOld();
 | |
| 
 | |
|     const result = await sql.getResults("SELECT * FROM event_log ORDER BY date_added DESC");
 | |
| 
 | |
|     res.send(result);
 | |
| });
 | |
| 
 | |
| async function deleteOld() {
 | |
|     const cutoffId = await sql.getSingleValue("SELECT id FROM event_log ORDER BY id DESC LIMIT 1000, 1");
 | |
| 
 | |
|     if (cutoffId) {
 | |
|         await sql.execute("DELETE FROM event_log WHERE id < ?", [cutoffId]);
 | |
|     }
 | |
| }
 | |
| 
 | |
| module.exports = router; |