diff options
| author | 2025-01-02 19:15:11 +0000 | |
|---|---|---|
| committer | 2025-01-02 19:15:11 +0000 | |
| commit | 6b12cbd18e6351b45dd75ec68807b546db88da70 (patch) | |
| tree | 33050e9da4a76d8449af77238303caa2dd7b02f4 /bot/constants.py | |
| parent | Add warning log if bot hits reddit ratelimit (diff) | |
Add env var setting to determine whether to post daily top reddit posts
Diffstat (limited to 'bot/constants.py')
| -rw-r--r-- | bot/constants.py | 1 | 
1 files changed, 1 insertions, 0 deletions
diff --git a/bot/constants.py b/bot/constants.py index 6b6d1a1d..bf53c4b4 100644 --- a/bot/constants.py +++ b/bot/constants.py @@ -301,6 +301,7 @@ class _Reddit(EnvConfig, env_prefix="reddit_"):      client_id: SecretStr = ""      secret: SecretStr = ""      webhook: int = 635408384794951680 +    send_top_daily_posts: bool = True  Reddit = _Reddit()  |