update So 2. Feb 10:31:01 CET 2020

This commit is contained in:
Robert Richter 2020-02-02 10:31:01 +01:00
parent 3c20b98d3e
commit e7feafc29c

View File

@ -42,12 +42,13 @@ module.exports = function(app, sql, app_cfg, passport, auth, udp) {
var err = new Error('Wache ' + parmeter_id + ' nicht vorhanden!');
err.status = 404;
next(err);
}
};
});
});
// get /rueckmeldung
app.get('/rueckmeldung', function(req, res) {
app.get('/rueckmeldung/:waip_uuid', function(req, res, next) {
var waip_uuid = req.params.waip_uuid;
sql.db_get_userconfig(req.user.id, function(data) {
res.render('config', {
title: 'Einstellungen',