Add /submessage endpoint.

This commit is contained in:
Steve Howell
2018-02-12 04:53:36 -05:00
committed by Tim Abbott
parent 33d753d174
commit de47eeb6f1
6 changed files with 191 additions and 1 deletions

View File

@@ -560,6 +560,9 @@ def apply_event(state: Dict[str, Any],
elif event['type'] == "reaction":
# The client will get the message with the reactions directly
pass
elif event['type'] == "submessage":
# The client will get submessages with their messages
pass
elif event['type'] == 'typing':
# Typing notification events are transient and thus ignored
pass