1
0
mirror of https://github.com/Foltik/Shimapan synced 2024-11-13 00:26:55 -05:00
shimapan/app/routes/home.js

10 lines
313 B
JavaScript
Raw Normal View History

2018-08-14 05:14:53 -04:00
const express = require('express');
const router = express.Router();
const path = require('path');
const requireAuth = require('../util/auth').requireAuth;
2017-10-14 15:16:58 -04:00
2018-08-14 05:14:53 -04:00
router.get('/', requireAuth(), function(req, res) {
2017-10-14 15:16:58 -04:00
res.sendFile(path.join(__dirname, '../../public/views', 'home.html'));
});
module.exports = router;