summary refs log tree commit diff
path: root/synapse/rest
diff options
context:
space:
mode:
authorMark Haines <mark.haines@matrix.org>2015-01-29 16:41:21 +0000
committerMark Haines <mark.haines@matrix.org>2015-01-29 16:41:21 +0000
commit722b65f46131349c5afdcc7eb48297cdd9d9cbd6 (patch)
tree9913ea8b1bccf900ffbad8af7a01fcb492f4ca51 /synapse/rest
parentFix check for empty room update (diff)
downloadsynapse-722b65f46131349c5afdcc7eb48297cdd9d9cbd6.tar.xz
Move typing notifs to an "emphermal" event list on the room object
Diffstat (limited to 'synapse/rest')
-rw-r--r--synapse/rest/client/v2_alpha/sync.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/synapse/rest/client/v2_alpha/sync.py b/synapse/rest/client/v2_alpha/sync.py
index 76489e27c8..2ae2eec55d 100644
--- a/synapse/rest/client/v2_alpha/sync.py
+++ b/synapse/rest/client/v2_alpha/sync.py
@@ -66,6 +66,7 @@ class SyncRestServlet(RestServlet):
                 }
                 "state": [] // list of EventIDs updating the current state to
                             // be what it should be at the end of the batch.
+                "ephemeral": []
             }]
         }
     """
@@ -188,9 +189,8 @@ class SyncRestServlet(RestServlet):
             "state": state_event_ids,
             "limited": room.limited,
             "published": room.published,
+            "ephemeral": room.ephemeral,
         }
-        if room.typing is not None:
-            result["typing"] = room.typing
         return result