aboutsummaryrefslogtreecommitdiffstats
path: root/pydis_site/apps/api/models
diff options
context:
space:
mode:
authorGravatar shtlrs <[email protected]>2023-03-19 17:57:14 +0100
committerGravatar shtlrs <[email protected]>2023-03-19 17:57:14 +0100
commite25d1af314196f403c1437b7bfc9c4e07183ac6d (patch)
treeabb0303da3fc446809a317c2e0b9fab54e0d1d2f /pydis_site/apps/api/models
parentmake generate-sha-tag a dependency for publish-static-review (diff)
parentMerge branch 'main' into group-all-workflows (diff)
Merge remote-tracking branch 'origin/group-all-workflows' into group-all-workflows
Diffstat (limited to 'pydis_site/apps/api/models')
-rw-r--r--pydis_site/apps/api/models/bot/infraction.py9
1 files changed, 9 insertions, 0 deletions
diff --git a/pydis_site/apps/api/models/bot/infraction.py b/pydis_site/apps/api/models/bot/infraction.py
index 218ee5ec..660f1cb4 100644
--- a/pydis_site/apps/api/models/bot/infraction.py
+++ b/pydis_site/apps/api/models/bot/infraction.py
@@ -69,6 +69,15 @@ class Infraction(ModelReprMixin, models.Model):
help_text="Whether a DM was sent to the user when infraction was applied."
)
+ jump_url = models.URLField(
+ default=None,
+ null=True,
+ max_length=88,
+ help_text=(
+ "The jump url to message invoking the infraction."
+ )
+ )
+
def __str__(self):
"""Returns some info on the current infraction, for display purposes."""
s = f"#{self.id}: {self.type} on {self.user_id}"