Notes/routes/migration.js

12 lines
243 B
JavaScript
Raw Normal View History

2017-10-21 21:10:33 -04:00
"use strict";
2017-10-15 16:32:49 -04:00
const express = require('express');
const router = express.Router();
2017-10-15 19:47:05 -04:00
const auth = require('../services/auth');
2017-10-15 16:32:49 -04:00
router.get('', auth.checkAuth, (req, res, next) => {
2017-10-21 21:10:33 -04:00
res.render('migration', {});
2017-10-15 16:32:49 -04:00
});
module.exports = router;