diff options
author | 2023-03-10 23:11:35 +0530 | |
---|---|---|
committer | 2023-03-10 23:24:43 +0530 | |
commit | ed3577652d620057cc87bbc74775548066cfdc8f (patch) | |
tree | 8d1dea591cff7c97e2cde03338e3a81a7ba184ae /pydis_site/apps/api/models/bot | |
parent | Merge branch 'main' into vivek/add-jump-url-field (diff) |
Replace CharField with URLField and set default to None
Diffstat (limited to 'pydis_site/apps/api/models/bot')
-rw-r--r-- | pydis_site/apps/api/models/bot/infraction.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/pydis_site/apps/api/models/bot/infraction.py b/pydis_site/apps/api/models/bot/infraction.py index ea0277c3..660f1cb4 100644 --- a/pydis_site/apps/api/models/bot/infraction.py +++ b/pydis_site/apps/api/models/bot/infraction.py @@ -69,8 +69,9 @@ class Infraction(ModelReprMixin, models.Model): help_text="Whether a DM was sent to the user when infraction was applied." ) - jump_url = models.CharField( - default='', + jump_url = models.URLField( + default=None, + null=True, max_length=88, help_text=( "The jump url to message invoking the infraction." |