| 12345678910111213141516171819202122232425262728293031 |
- const express = require('express');
- const router = express.Router();
- router.get('/', (req, res, next) => {
- res.render('index', {
- appName: 'watch-files',
- title:'Activity',
- menuId:'activity',
- page:''
- });
- });
- router.get('/watches', (req, res, next) => {
- res.render('index', {
- appName: 'watch-files',
- title:'Watches',
- menuId:'watches',
- page:''
- });
- });
- router.get('/settings', (req, res, next) => {
- res.render('index', {
- appName: 'watch-files',
- title:'Settings',
- menuId:'settings',
- page:''
- });
- });
- module.exports = router;
|