diff options
author | 2019-11-03 20:58:40 +0100 | |
---|---|---|
committer | 2019-11-03 20:58:40 +0100 | |
commit | 982571443adaeb33898f6cbc013ad2b4a7e90ab6 (patch) | |
tree | 9f97d83fd7089ef7551bd6c7c2fecef9d59822d6 /pydis_site/apps/api/models/bot | |
parent | Make test less fragile and improve test name (diff) | |
parent | Merge pull request #293 from python-discord/update-dependency-pinning (diff) |
Merge branch 'master' into active-infractions-validation
Diffstat (limited to 'pydis_site/apps/api/models/bot')
-rw-r--r-- | pydis_site/apps/api/models/bot/reminder.py | 6 |
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, |