Update routing.js

This commit is contained in:
Robert Richter 2019-02-25 15:35:18 +01:00
parent a0b29b56f4
commit a2101cfbe9

View File

@ -71,6 +71,28 @@ module.exports = function (app, sql, app_cfg, passport, auth) {
});
});
// get /show_active_user
app.get('/show_active_user', auth.ensureAuthenticated, function (req, res) {
sql.db_get_active_clients(function (data) {
res.render('show_active_user', {
title: 'Verbundene PCs/Benutzer',
user: req.user,
dataSet: data
});
});
});
// get /show_active_waip
app.get('/show_active_waip', auth.ensureAuthenticated, function (req, res) {
sql.db_get_active_waips(function (data) {
res.render('show_active_waip', {
title: 'Akutelle Einsätze',
user: req.user,
dataSet: data
});
});
});
// get /show_log
app.get('/show_log', auth.ensureAuthenticated, function (req, res) {
sql.db_get_log(function (data) {
@ -82,6 +104,17 @@ module.exports = function (app, sql, app_cfg, passport, auth) {
});
});
// get /edit_users
app.get('/edit_users', auth.ensureAuthenticated, function (req, res) {
sql.db_get_users(function (data) {
res.render('edit_users', {
title: 'Benutzer und Rechte verwalten',
user: req.user,
dataSet: data
});
});
});
// get /login
app.get('/login', function (req, res) {
res.render('login', {
@ -116,7 +149,9 @@ module.exports = function (app, sql, app_cfg, passport, auth) {
res.locals.error = req.app.get('env') === 'development' ? err : {};
// render the error page
res.status(err.status || 500);
res.render('error');
res.render('error', {
user: req.user
});
});
};
};