diff options
| author | 2020-07-12 14:40:26 +0200 | |
|---|---|---|
| committer | 2020-07-12 14:40:26 +0200 | |
| commit | cb5e361d04cd9c430bca4fb3496284e469d35c98 (patch) | |
| tree | 6e8a3b9ca6304f33b8b871a047d1dce412a00c66 | |
| parent | Merge pull request #1035 from python-discord/range-len-message (diff) | |
Add the #dm_log ID to constants.
https://github.com/python-discord/bot/issues/667
| -rw-r--r-- | bot/constants.py | 1 | ||||
| -rw-r--r-- | config-default.yml | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/bot/constants.py b/bot/constants.py index a1b392c82..074699025 100644 --- a/bot/constants.py +++ b/bot/constants.py @@ -416,6 +416,7 @@ class Channels(metaclass=YAMLGetter): user_log: int verification: int voice_log: int + dm_log: int class Webhooks(metaclass=YAMLGetter): diff --git a/config-default.yml b/config-default.yml index 64c4e715b..d3ba45f88 100644 --- a/config-default.yml +++ b/config-default.yml @@ -150,6 +150,7 @@ guild: mod_log: &MOD_LOG 282638479504965634 user_log: 528976905546760203 voice_log: 640292421988646961 + dm_log: 653713721625018428 # Off-topic off_topic_0: 291284109232308226 |