mirror of
https://github.com/zadam/trilium.git
synced 2025-03-01 14:22:32 +01:00
18 lines
527 B
JavaScript
18 lines
527 B
JavaScript
"use strict";
|
|
|
|
const express = require('express');
|
|
const router = express.Router();
|
|
const auth = require('../services/auth');
|
|
const sourceId = require('../services/sourceId');
|
|
const sql = require('../services/sql');
|
|
const wrap = require('express-promise-wrap').wrap;
|
|
|
|
router.get('', auth.checkAuth, wrap(async (req, res, next) => {
|
|
res.render('index', {
|
|
sourceId: await sourceId.generateSourceId(),
|
|
maxSyncIdAtLoad: await sql.getFirstValue("SELECT MAX(id) FROM sync")
|
|
});
|
|
}));
|
|
|
|
module.exports = router;
|