summary refs log tree commit diff
path: root/synapse/storage/roommember.py
diff options
context:
space:
mode:
authorPaul "LeoNerd" Evans <paul@matrix.org>2014-09-02 16:16:51 +0100
committerPaul "LeoNerd" Evans <paul@matrix.org>2014-09-03 10:40:48 +0100
commitda3e04df8bcbb42f383abf406f4d71cf54b77ae2 (patch)
tree98ca8467f9c8a79740e27a581f5ebc01abfab891 /synapse/storage/roommember.py
parentAllow optional non-suppression of exceptions through the Distributor (diff)
downloadsynapse-da3e04df8bcbb42f383abf406f4d71cf54b77ae2.tar.xz
Rename the 'do_users_share_a_room' to something slightly less verb-sounding
Diffstat (limited to 'synapse/storage/roommember.py')
-rw-r--r--synapse/storage/roommember.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/storage/roommember.py b/synapse/storage/roommember.py
index 2746126e85..c380ec0ebd 100644
--- a/synapse/storage/roommember.py
+++ b/synapse/storage/roommember.py
@@ -165,7 +165,7 @@ class RoomMemberStore(SQLBaseStore):
         defer.returnValue(results)
 
     @defer.inlineCallbacks
-    def do_users_share_a_room(self, user_list):
+    def user_rooms_intersect(self, user_list):
         """ Checks whether a list of users share a room.
         """
         user_list_clause = " OR ".join(["m.user_id = ?"] * len(user_list))