disable signups

This commit is contained in:
Priansh Shah 2018-04-09 20:30:44 +00:00
parent 78082f7152
commit ca875ed01d

View file

@ -70,7 +70,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 = config.signupDisabled;
app.locals.signupDisabled = true; //config.signupDisabled;
app.locals.description = config.app.description;
app.locals.keywords = config.app.keywords;
@ -117,6 +117,10 @@ 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();
}