trilium/routes/migration.js

13 lines
322 B
JavaScript
Raw Normal View History

2017-10-22 09:10:33 +08:00
"use strict";
2017-10-16 04:32:49 +08:00
const express = require('express');
const router = express.Router();
2017-10-16 07:47:05 +08:00
const auth = require('../services/auth');
const wrap = require('express-promise-wrap').wrap;
2017-10-16 04:32:49 +08:00
router.get('', auth.checkAuthForMigrationPage, wrap(async (req, res, next) => {
2017-10-22 09:10:33 +08:00
res.render('migration', {});
}));
2017-10-16 04:32:49 +08:00
module.exports = router;