Allows staffs to invite members even when user registration is disabled (the most likely use case)

This commit is contained in:
Maxi Redigonda 2019-10-29 14:34:20 -03:00
parent d7e1edea01
commit f3a0fbf7da
1 changed files with 0 additions and 4 deletions

View File

@ -69,10 +69,6 @@ class InviteUserController extends Controller {
throw new RequestException(ERRORS::USER_SYSTEM_DISABLED);
}
if (!Setting::getSetting('registration')->value) {
throw new RequestException(ERRORS::NO_PERMISSION);
}
$this->storeRequestData();
$existentUser = User::getUser($this->userEmail, 'email');