mirror of
https://github.com/Foltik/Shimapan
synced 2024-11-10 23:53:31 -05:00
10 lines
314 B
JavaScript
10 lines
314 B
JavaScript
const express = require('express');
|
|
const router = express.Router();
|
|
const path = require('path');
|
|
const requireAuth = require('../util/auth').requireAuth;
|
|
|
|
router.get('/', requireAuth(), function(req, res) {
|
|
res.sendFile(path.join(__dirname, '../../public/views', 'panel.html'));
|
|
});
|
|
|
|
module.exports = router; |