From 336fd9616d6b858d3df682ec0180bc0ebbbce225 Mon Sep 17 00:00:00 2001 From: Johannes Christ Date: Sat, 5 Jan 2019 15:54:57 +0100 Subject: Add the `note` infraction type. --- api/models.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'api/models.py') diff --git a/api/models.py b/api/models.py index 21b5975a..480dba3d 100644 --- a/api/models.py +++ b/api/models.py @@ -241,10 +241,11 @@ class Infraction(ModelReprMixin, models.Model): """An infraction for a Discord user.""" TYPE_CHOICES = ( + ("note", "Note"), ("warning", "Warning"), ("mute", "Mute"), - ("ban", "Ban"), ("kick", "Kick"), + ("ban", "Ban"), ("superstar", "Superstar") ) inserted_at = models.DateTimeField( -- cgit v1.2.3