aboutsummaryrefslogtreecommitdiffstats
path: root/pydis_site/apps/api/models/bot
diff options
context:
space:
mode:
authorGravatar mbaruh <[email protected]>2022-09-27 00:57:09 +0300
committerGravatar mbaruh <[email protected]>2022-09-27 00:57:09 +0300
commit8c07c20c184371552d6811398ed5208ed2213c9b (patch)
tree4caca89170f6e640d852394369f850a0175aa11e /pydis_site/apps/api/models/bot
parentMerge branch 'main' into new-filter-schema (diff)
Add voice mute to infraction choices
Diffstat (limited to 'pydis_site/apps/api/models/bot')
-rw-r--r--pydis_site/apps/api/models/bot/filters.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pydis_site/apps/api/models/bot/filters.py b/pydis_site/apps/api/models/bot/filters.py
index 708ceadc..f90eb6e6 100644
--- a/pydis_site/apps/api/models/bot/filters.py
+++ b/pydis_site/apps/api/models/bot/filters.py
@@ -28,7 +28,7 @@ class FilterSettingsMixin(models.Model):
)
infraction_type = models.CharField(
choices=Infraction.TYPE_CHOICES,
- max_length=9,
+ max_length=10,
null=True,
help_text="The infraction to apply to this user."
)