summary refs log tree commit diff
path: root/synapse
diff options
context:
space:
mode:
authorDavid Baker <dave@matrix.org>2016-05-10 18:53:15 +0200
committerDavid Baker <dave@matrix.org>2016-05-10 18:53:15 +0200
commit3367e65476f224b12a94277552787650ab57d984 (patch)
treeb08e8a8e2e6ae7be1b2be6c051c22218cdb6bd82 /synapse
parentAlso pass through get_profile_displayname (diff)
downloadsynapse-3367e65476f224b12a94277552787650ab57d984.tar.xz
Pass through get_state_groups
Diffstat (limited to 'synapse')
-rw-r--r--synapse/app/pusher.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/synapse/app/pusher.py b/synapse/app/pusher.py
index 9fec6869fd..6f5e7a2e3f 100644
--- a/synapse/app/pusher.py
+++ b/synapse/app/pusher.py
@@ -127,6 +127,10 @@ class PusherSlaveStore(
         DataStore.get_profile_displayname.__func__
     )
 
+    get_state_groups = (
+        DataStore.get_state_groups.__func__
+    )
+
 
 class PusherServer(HomeServer):