1
0
mirror of https://github.com/matt-fidd/stratos.git synced 2026-01-01 18:39:32 +00:00
Files
stratos/routes/report.js
2022-03-03 09:21:43 +00:00

24 lines
417 B
JavaScript

'use strict';
const express = require('express');
const router = express.Router();
router.get('/reports', (req, res, next) => {
/* eslint-disable multiline-comment-style */
/*
return res.render('reports', {
title: 'Stratos - Reports',
current: 'Reports',
name: req.session.fullName
});
*/
/* eslint-enable multiline-comment-style */
next();
});
module.exports = {
root: '/admin',
router: router
};