mirror of
https://github.com/zadam/trilium.git
synced 2024-11-15 20:33:12 +08:00
21 lines
No EOL
618 B
JavaScript
21 lines
No EOL
618 B
JavaScript
"use strict";
|
|
|
|
const express = require('express');
|
|
const router = express.Router();
|
|
const sql = require('../../services/sql');
|
|
const auth = require('../../services/auth');
|
|
|
|
router.get('/:full_load_time', auth.checkApiAuth, async (req, res, next) => {
|
|
const fullLoadTime = req.params.full_load_time;
|
|
|
|
const browserId = req.get('x-browser-id');
|
|
|
|
const count = await sql.getSingleResult("SELECT COUNT(*) AS 'count' FROM audit_log WHERE browser_id != ? " +
|
|
"AND date_modified >= ?", [browserId, fullLoadTime])['count'];
|
|
|
|
res.send({
|
|
'changed': count > 0
|
|
});
|
|
});
|
|
|
|
module.exports = router; |