From c114ddd8924017e9edd58d457420d36ecef3b11d Mon Sep 17 00:00:00 2001 From: Oliver Boehlk Date: Wed, 13 May 2020 20:36:12 +0200 Subject: [PATCH] revert authentication skip --- backend/index.js | 1 - 1 file changed, 1 deletion(-) diff --git a/backend/index.js b/backend/index.js index 43edb04..d36ceae 100644 --- a/backend/index.js +++ b/backend/index.js @@ -164,7 +164,6 @@ app.put("/API/user/create", function (req, res) { }); app.all("*", function (req, res, next) { - return next(); if (req.isAuthenticated()) { return next(); }