From ba3bf4030945bbdf3ac0ffc4acdf542de4d92759 Mon Sep 17 00:00:00 2001 From: MarkKoz Date: Sun, 9 Jun 2019 13:46:42 -0700 Subject: Add appeals e-mail to infraction DMs --- bot/cogs/moderation.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/bot/cogs/moderation.py b/bot/cogs/moderation.py index 9db5d9d62..256d38866 100644 --- a/bot/cogs/moderation.py +++ b/bot/cogs/moderation.py @@ -30,6 +30,7 @@ INFRACTION_ICONS = { "Ban": Icons.user_ban } RULES_URL = "https://pythondiscord.com/about/rules" +APPEALABLE_INFRACTIONS = ("Ban", "Mute") def proxy_user(user_id: str) -> Object: @@ -1173,6 +1174,9 @@ class Moderation(Scheduler): embed.title = f"Please review our rules over at {RULES_URL}" embed.url = RULES_URL + if infr_type in APPEALABLE_INFRACTIONS: + embed.set_footer(text="To appeal this infraction, send an e-mail to appeals@pythondiscord.com") + return await self.send_private_embed(user, embed) async def notify_pardon( -- cgit v1.2.3