mirror of
https://github.com/status-im/cabot.git
synced 2025-02-24 18:38:07 +00:00
Make AlertPlugin title not able to be blank
I accidentally created a blank alert plugin and it broke some pages as we use the plugin title in some urls
This commit is contained in:
parent
0159cb79c0
commit
6953572fb5
@ -9,7 +9,7 @@ logger = logging.getLogger(__name__)
|
||||
|
||||
|
||||
class AlertPlugin(PolymorphicModel):
|
||||
title = models.CharField(max_length=30, unique=True, editable=False)
|
||||
title = models.CharField(max_length=30, unique=True, blank=False, editable=False)
|
||||
enabled = models.BooleanField(default=True)
|
||||
|
||||
author = None
|
||||
|
Loading…
x
Reference in New Issue
Block a user