mirror of
https://github.com/zadam/trilium.git
synced 2024-11-11 01:23:57 +08:00
20 lines
514 B
JavaScript
20 lines
514 B
JavaScript
"use strict";
|
|
|
|
const express = require('express');
|
|
const router = express.Router();
|
|
const auth = require('../services/auth');
|
|
const migration = require('../services/migration');
|
|
const sql = require('../services/sql');
|
|
|
|
router.get('', auth.checkAuth, async (req, res, next) => {
|
|
const dbVersion = parseInt(await sql.getOption('db_version'))
|
|
|
|
if (dbVersion < migration.APP_DB_VERSION) {
|
|
res.redirect("migration");
|
|
}
|
|
else {
|
|
res.render('index', {});
|
|
}
|
|
});
|
|
|
|
module.exports = router;
|