mirror of
https://github.com/zadam/trilium.git
synced 2025-11-02 03:16:11 +01:00
moved /app into just /
This commit is contained in:
9
node/routes/index.js
Normal file
9
node/routes/index.js
Normal file
@@ -0,0 +1,9 @@
|
||||
const express = require('express');
|
||||
const router = express.Router();
|
||||
const auth = require('../auth');
|
||||
|
||||
router.get('', auth.checkAuth, (req, res, next) => {
|
||||
res.render('index', {});
|
||||
});
|
||||
|
||||
module.exports = router;
|
||||
Reference in New Issue
Block a user