Guillermo - ban-on-signup[skip ci]

This commit is contained in:
AntonyAntonio 2016-12-04 04:08:42 -03:00
parent e962afba67
commit d40327f0ce
1 changed files with 6 additions and 0 deletions

View File

@ -43,6 +43,12 @@ class SignUpController extends Controller {
Response::respondError(ERRORS::USER_EXISTS);
return;
}
$banRow = Ban::getDataStore($this->userEmail,'email');
if (!$banRow->isNull()) {
Response::respondError(ERRORS::ALREADY_BANNED);
return;
}
$userId = $this->createNewUserAndRetrieveId();
$this->sendRegistrationMail();