fix(auth): disallow registration by default

This commit is contained in:
Yassine Doghri 2022-11-04 10:19:52 +00:00
parent 9f785db7ba
commit 379b9be2b9
1 changed files with 1 additions and 1 deletions

View File

@ -74,7 +74,7 @@ class Auth extends ShieldAuth
* --------------------------------------------------------------------
* Determines whether users can register for the site.
*/
public bool $allowRegistration = true;
public bool $allowRegistration = false;
/**
* --------------------------------------------------------------------