Disable registration by default
This commit is contained in:
parent
23d0d3e2b7
commit
2883c42534
2 changed files with 19 additions and 1 deletions
|
@ -43,7 +43,7 @@ class SiteSettings(models.Model):
|
|||
privacy_policy = models.TextField(default="Add a privacy policy here.")
|
||||
|
||||
# registration
|
||||
allow_registration = models.BooleanField(default=True)
|
||||
allow_registration = models.BooleanField(default=False)
|
||||
allow_invite_requests = models.BooleanField(default=True)
|
||||
require_confirm_email = models.BooleanField(default=True)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue