add is_downloadable field

This commit is contained in:
bkfox
2022-10-05 19:52:47 +02:00
parent 91707c4553
commit a24afd114e
2 changed files with 11 additions and 5 deletions

View File

@ -127,7 +127,11 @@ class Sound(models.Model):
blank=True, null=True
)
is_public = models.BooleanField(
_('public'), help_text=_('if it can be podcasted from the server'),
_('public'), help_text=_('whether it is publicly available as podcast'),
default=False,
)
is_downloadable = models.BooleanField(
_('downloadable'), help_text=_('whether it can be publicly downloaded by visitors'),
default=False,
)