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(); }