v1.18.x
Julian Lam 9 years ago
parent ff88186d41
commit 4aabac5288

@ -33,7 +33,7 @@ authenticationController.register = function(req, res, next) {
async.waterfall([ async.waterfall([
function(next) { function(next) {
if (registrationType === 'invite-only') { if (registrationType === 'invite-only' || registrationType === 'admin-invite-only') {
user.verifyInvitation(userData, next); user.verifyInvitation(userData, next);
} else { } else {
next(); next();
@ -59,7 +59,7 @@ authenticationController.register = function(req, res, next) {
plugins.fireHook('filter:register.check', {req: req, res: res, userData: userData}, next); plugins.fireHook('filter:register.check', {req: req, res: res, userData: userData}, next);
}, },
function(data, next) { function(data, next) {
if (registrationType === 'normal' || registrationType === 'invite-only') { if (registrationType === 'normal' || registrationType === 'invite-only' || registrationType === 'admin-invite-only') {
registerAndLoginUser(req, res, userData, next); registerAndLoginUser(req, res, userData, next);
} else if (registrationType === 'admin-approval') { } else if (registrationType === 'admin-approval') {
addToApprovalQueue(req, userData, next); addToApprovalQueue(req, userData, next);

Loading…
Cancel
Save