mirror of
https://github.com/zadam/trilium.git
synced 2024-11-15 12:17:01 +08:00
16 lines
474 B
JavaScript
16 lines
474 B
JavaScript
"use strict";
|
|
|
|
const express = require('express');
|
|
const router = express.Router();
|
|
const auth = require('../services/auth');
|
|
const source_id = require('../services/source_id');
|
|
const sql = require('../services/sql');
|
|
|
|
router.get('', auth.checkAuth, async (req, res, next) => {
|
|
res.render('index', {
|
|
sourceId: await source_id.generateSourceId(),
|
|
maxSyncIdAtLoad: await sql.getSingleValue("SELECT MAX(id) FROM sync")
|
|
});
|
|
});
|
|
|
|
module.exports = router;
|