Merge pull request #4013 from CatoTH/Issue3958-Default-Internal-Value

Change default of change recommendation internal value to public
This commit is contained in:
Finn Stutzenstein 2018-11-15 15:16:12 +01:00 committed by GitHub
commit 4f7fa31f22
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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)