forked from rc/aircox
add is_downloadable field
This commit is contained in:
@ -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,
|
||||
)
|
||||
|
||||
|
Reference in New Issue
Block a user