summary refs log tree commit diff
path: root/synapse/rest/client/v2_alpha/sync.py
diff options
context:
space:
mode:
authorErik Johnston <erik@matrix.org>2016-01-19 11:35:50 +0000
committerErik Johnston <erik@matrix.org>2016-01-19 11:35:50 +0000
commit3adcc4c86aade29f502b7245acc2353326a62256 (patch)
tree1070c3251ee6ca69808619007fb954cd9bc9c5a6 /synapse/rest/client/v2_alpha/sync.py
parentMerge pull request #502 from matrix-org/erikj/push_notif_perf (diff)
downloadsynapse-3adcc4c86aade29f502b7245acc2353326a62256.tar.xz
Return highlight_count in /sync
Diffstat (limited to 'synapse/rest/client/v2_alpha/sync.py')
-rw-r--r--synapse/rest/client/v2_alpha/sync.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/synapse/rest/client/v2_alpha/sync.py b/synapse/rest/client/v2_alpha/sync.py
index 826f9db189..e300ced214 100644
--- a/synapse/rest/client/v2_alpha/sync.py
+++ b/synapse/rest/client/v2_alpha/sync.py
@@ -313,6 +313,7 @@ class SyncRestServlet(RestServlet):
             ephemeral_events = filter.filter_room_ephemeral(room.ephemeral)
             result["ephemeral"] = {"events": ephemeral_events}
             result["unread_notification_count"] = room.unread_notification_count
+            result["unread_highlight_count"] = room.unread_highlight_count
 
         return result