diff options
| author | 2020-08-04 18:09:06 +0200 | |
|---|---|---|
| committer | 2020-08-04 18:09:06 +0200 | |
| commit | 8415ac8da18054be3258ee7816a70c58a3a9322a (patch) | |
| tree | 9a06ae0171f1f74bf46001213399acdbd6c18fa9 | |
| parent | Verification: refactor `discord` imports (diff) | |
Verification: define time constants
| -rw-r--r-- | bot/cogs/verification.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/bot/cogs/verification.py b/bot/cogs/verification.py index f86356f33..95d92899b 100644 --- a/bot/cogs/verification.py +++ b/bot/cogs/verification.py @@ -39,6 +39,9 @@ If you'd like to unsubscribe from the announcement notifications, simply send `! <#{constants.Channels.bot_commands}>. """ +UNVERIFIED_AFTER = 3 # Amount of days after which non-Developers receive the @Unverified role +KICKED_AFTER = 30 # Amount of days after which non-Developers get kicked from the guild + BOT_MESSAGE_DELETE_DELAY = 10 |