aboutsummaryrefslogtreecommitdiffstats
path: root/bot/exts/help_channels/_caches.py
diff options
context:
space:
mode:
Diffstat (limited to 'bot/exts/help_channels/_caches.py')
-rw-r--r--bot/exts/help_channels/_caches.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/bot/exts/help_channels/_caches.py b/bot/exts/help_channels/_caches.py
index e741fd20f..c5e4ee917 100644
--- a/bot/exts/help_channels/_caches.py
+++ b/bot/exts/help_channels/_caches.py
@@ -20,3 +20,7 @@ non_claimant_last_message_times = RedisCache(namespace="HelpChannels.non_claiman
# This cache maps a help channel to original question message in same channel.
# RedisCache[discord.TextChannel.id, discord.Message.id]
question_messages = RedisCache(namespace="HelpChannels.question_messages")
+
+# This cache keeps track of the dynamic message ID for
+# the continuously updated message in the #How-to-get-help channel.
+dynamic_message = RedisCache(namespace="HelpChannels.dynamic_message")