aboutsummaryrefslogtreecommitdiff
path: root/modules/ircv3_chathistory.py
diff options
context:
space:
mode:
authorGravatar jesopo2019-06-21 17:15:46 +0100
committerGravatar jesopo2019-06-21 17:15:46 +0100
commit8a0d99f9699b3cb27908fee0e485faf028d3e6fe (patch)
tree782538d0d5c9c153ae3626451d8c46188b1cbfd7 /modules/ircv3_chathistory.py
parentUpdate CHANGELOG.md (diff)
Adda system of aliases for CAPs, mostly for changeable draft specs and creating
dependence between moving specs
Diffstat (limited to 'modules/ircv3_chathistory.py')
-rw-r--r--modules/ircv3_chathistory.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/modules/ircv3_chathistory.py b/modules/ircv3_chathistory.py
index 27daad2b..e540673a 100644
--- a/modules/ircv3_chathistory.py
+++ b/modules/ircv3_chathistory.py
@@ -5,7 +5,8 @@ from src import ModuleManager, utils
TAG = utils.irc.MessageTag("msgid", "draft/msgid")
CHATHISTORY_BATCH = utils.irc.BatchType("chathistory")
-EVENTPLAYBACK_CAP = utils.irc.Capability(None, "draft/event-playback")
+EVENTPLAYBACK_CAP = utils.irc.Capability(None, "draft/event-playback",
+ alias="event-playback")
HISTORY_BATCH = utils.irc.BatchType("history")
@utils.export("cap", EVENTPLAYBACK_CAP)