diff options
author | 2022-09-27 12:21:32 +0300 | |
---|---|---|
committer | 2022-09-30 12:21:26 +0300 | |
commit | 870238e5ed31ae5dfb0e22fe0bc131f40d855013 (patch) | |
tree | a1abb06e6fdceba7ce1f36f99128a274949946fa /pydis_site/apps/api/models/bot | |
parent | Use the new models.JSONField (diff) |
Convert the infraction choices to uppercase
This is done to match the values used on the bot.
Diffstat (limited to 'pydis_site/apps/api/models/bot')
-rw-r--r-- | pydis_site/apps/api/models/bot/filters.py | 2 |
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 33891890..1fb9707d 100644 --- a/pydis_site/apps/api/models/bot/filters.py +++ b/pydis_site/apps/api/models/bot/filters.py @@ -27,7 +27,7 @@ class FilterSettingsMixin(models.Model): null=True ) infraction_type = models.CharField( - choices=Infraction.TYPE_CHOICES, + choices=[(choices[0].upper(), choices[1]) for choices in Infraction.TYPE_CHOICES], max_length=10, null=True, help_text="The infraction to apply to this user." |