aboutsummaryrefslogtreecommitdiffstats
path: root/pydis_site/apps/api/models
diff options
context:
space:
mode:
authorGravatar Leon Sandøy <[email protected]>2019-10-28 14:04:30 +0100
committerGravatar GitHub <[email protected]>2019-10-28 14:04:30 +0100
commitdd05b86aef2dc1d2aefc71bd42e121028d888465 (patch)
tree5d5399d7df16562556146184aae04d2541b251e8 /pydis_site/apps/api/models
parentUpdate dependency pinning (diff)
parentMerge pull request #301 from python-discord/new-rules (diff)
Merge branch 'master' into update-dependency-pinning
Diffstat (limited to 'pydis_site/apps/api/models')
-rw-r--r--pydis_site/apps/api/models/bot/reminder.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/pydis_site/apps/api/models/bot/reminder.py b/pydis_site/apps/api/models/bot/reminder.py
index decc9391..d53fedb5 100644
--- a/pydis_site/apps/api/models/bot/reminder.py
+++ b/pydis_site/apps/api/models/bot/reminder.py
@@ -15,6 +15,12 @@ class Reminder(ModelReprMixin, models.Model):
"If not, it has been sent out to the user."
)
)
+ jump_url = models.URLField(
+ max_length=88,
+ help_text=(
+ "The jump url to the message that created the reminder"
+ )
+ )
author = models.ForeignKey(
User,
on_delete=models.CASCADE,