Change default of change recommendation internal value to public

This commit is contained in:
Tobias Hößl 2018-11-15 10:54:43 +01:00
parent 734c7c872b
commit ffc0cd9423
No known key found for this signature in database
GPG Key ID: 1D780C7599C2D2A2
2 changed files with 2 additions and 2 deletions

View File

@ -13,6 +13,6 @@ class Migration(migrations.Migration):
migrations.AddField(
model_name='motionchangerecommendation',
name='internal',
field=models.BooleanField(default=True),
field=models.BooleanField(default=False),
),
]

View File

@ -740,7 +740,7 @@ class MotionChangeRecommendation(RESTModelMixin, models.Model):
rejected = models.BooleanField(default=False)
"""If true, this change recommendation has been rejected"""
internal = models.BooleanField(default=True)
internal = models.BooleanField(default=False)
"""If true, this change recommendation can not be seen by regular users"""
type = models.PositiveIntegerField(default=0)