diff options
author | Erik Johnston <erik@matrix.org> | 2014-08-26 09:40:58 +0100 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2014-08-26 09:40:58 +0100 |
commit | fea7b60cf3d9265dd818370c75f9779c1f72497a (patch) | |
tree | 557bf1da4e48a08e6ede9be19d7795df2399e6bf | |
parent | Send down state_key to clients (diff) | |
download | synapse-fea7b60cf3d9265dd818370c75f9779c1f72497a.tar.xz |
Add 'state_key' to valid_keys
-rw-r--r-- | synapse/api/events/__init__.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/synapse/api/events/__init__.py b/synapse/api/events/__init__.py index c5a3334b94..f9653e0b2a 100644 --- a/synapse/api/events/__init__.py +++ b/synapse/api/events/__init__.py @@ -41,6 +41,7 @@ class SynapseEvent(JsonEncodedObject): "room_id", "user_id", # sender/initiator "content", # HTTP body, JSON + "state_key", ] internal_keys = [ |