diff options
author | David Baker <dave@matrix.org> | 2016-05-10 18:53:15 +0200 |
---|---|---|
committer | David Baker <dave@matrix.org> | 2016-05-10 18:53:15 +0200 |
commit | 3367e65476f224b12a94277552787650ab57d984 (patch) | |
tree | b08e8a8e2e6ae7be1b2be6c051c22218cdb6bd82 /synapse/app/pusher.py | |
parent | Also pass through get_profile_displayname (diff) | |
download | synapse-3367e65476f224b12a94277552787650ab57d984.tar.xz |
Pass through get_state_groups
Diffstat (limited to 'synapse/app/pusher.py')
-rw-r--r-- | synapse/app/pusher.py | 4 |
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): |