diff options
| author | 2021-07-11 16:35:41 +0800 | |
|---|---|---|
| committer | 2021-12-18 18:02:11 +0100 | |
| commit | 1095346a1f86e43d5d5c39045a54354d1290fe0e (patch) | |
| tree | e7b5f6c622a30037fca65b13019fa38c6fe9f009 /pydis_site/apps/api/models | |
| parent | Fix faulty model enumeration. (diff) | |
Improve name of dm sent to triggered user.
Diffstat (limited to 'pydis_site/apps/api/models')
| -rw-r--r-- | pydis_site/apps/api/models/bot/filters.py | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/pydis_site/apps/api/models/bot/filters.py b/pydis_site/apps/api/models/bot/filters.py index 6f35bfb0..b5c80bda 100644 --- a/pydis_site/apps/api/models/bot/filters.py +++ b/pydis_site/apps/api/models/bot/filters.py @@ -106,7 +106,7 @@ class FilterSettings(models.Model):  class FilterAction(models.Model):      """The action to take when a filter is triggered.""" -    user_dm = models.CharField( +    dm_content = models.CharField(          max_length=1000,          null=True,          help_text="The DM to send to a user triggering this filter." | 
