Default should be false in private.

This commit is contained in:
Víðir Valberg Guðmundsson 2016-07-05 23:58:46 +02:00
parent d4acb0d434
commit cbb48a8553

View file

@ -21,7 +21,7 @@ class Village(CreatedUpdatedModel, UUIDModel):
description = models.TextField()
private = models.BooleanField(
default=True,
default=False,
help_text='Check if your village is privately organized'
)