From eaab2ff3396bc0e584777d82a640a837f4e6c718 Mon Sep 17 00:00:00 2001 From: Priansh Shah Date: Tue, 24 Apr 2018 23:03:15 +0300 Subject: [PATCH] Revert "disable signups" This reverts commit ca875ed01d57c69c0001719bda5375f94db4c46e. --- config/express.js | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/config/express.js b/config/express.js index 1b0bb1d9..902beb6f 100755 --- a/config/express.js +++ b/config/express.js @@ -61,7 +61,7 @@ module.exports = function(db) { // Setting application local variables app.locals.google_analytics_id = config.app.google_analytics_id; app.locals.title = config.app.title; - app.locals.signupDisabled = true; //config.signupDisabled; + app.locals.signupDisabled = config.signupDisabled; app.locals.description = config.app.description; app.locals.keywords = config.app.keywords; @@ -108,10 +108,6 @@ module.exports = function(db) { return next(); } - if (urlPath.indexOf('signup') > -1) { - res.send(400); return; - } - if (urlPath.indexOf('users') > -1 && urlPath.indexOf('me') > -1) { return next(); }