Commit b267c7ed authored by Wolfgang Knopki's avatar Wolfgang Knopki
Browse files

set paths to relative instead of global

1 merge request!2Mlab 56
Pipeline #344 passed with stage
in 10 seconds
Showing with 1 addition and 1 deletion
+1 -1
...@@ -63,7 +63,7 @@ module.exports = function (app, config, passport) { ...@@ -63,7 +63,7 @@ module.exports = function (app, config, passport) {
res.send(JSON.stringify(req.flash('test'))); res.send(JSON.stringify(req.flash('test')));
}); });
*/ */
app.get('./', function (req, res) { app.get('/', function (req, res) {
res.redirect('./profile') res.redirect('./profile')
}); });
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment