mirror of
https://github.com/zadam/trilium.git
synced 2024-11-15 12:17:01 +08:00
12 lines
252 B
JavaScript
12 lines
252 B
JavaScript
|
"use strict";
|
||
|
|
||
|
const express = require('express');
|
||
|
const router = express.Router();
|
||
|
const auth = require('../services/auth');
|
||
|
|
||
|
router.get('', auth.checkAppNotInitialized, (req, res, next) => {
|
||
|
res.render('setup', {});
|
||
|
});
|
||
|
|
||
|
module.exports = router;
|