diff options
| author | 2020-08-04 20:12:48 +0200 | |
|---|---|---|
| committer | 2020-08-04 21:53:19 +0200 | |
| commit | f101f5608dd840ae79db353b562a7c2f800533b2 (patch) | |
| tree | 512d4faf437a1830e06aa97a045cc56711a2cebe | |
| parent | Verification: move time constants above messages (diff) | |
Verification: add reminder ping message & frequency
| -rw-r--r-- | bot/cogs/verification.py | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/bot/cogs/verification.py b/bot/cogs/verification.py index 7244d041d..a01c25010 100644 --- a/bot/cogs/verification.py +++ b/bot/cogs/verification.py @@ -53,6 +53,17 @@ If you'd like to unsubscribe from the announcement notifications, simply send `! <#{constants.Channels.bot_commands}>. """ +REMINDER_MESSAGE = f""" +<@&{constants.Roles.unverified}> + +Welcome to Python Discord! Please read the documents mentioned above and type `!accept` to gain permissions \ +to send messages in the community! + +You will be kicked if you don't verify within `{KICKED_AFTER}` days. +""" + +REMINDER_FREQUENCY = 28 # Hours to wait between sending `REMINDER_MESSAGE` + class Verification(Cog): """User verification and role self-management.""" |