0
0
Fork 1
mirror of https://mau.dev/maunium/synapse.git synced 2024-07-26 21:19:08 +02:00

Remove unused get_joined_rooms_for_user

This commit is contained in:
Mark Haines 2016-05-17 10:20:51 +01:00
parent 425e6b4983
commit 526bf8126f

View file

@ -397,21 +397,6 @@ class RoomMemberHandler(BaseHandler):
if invite:
defer.returnValue(UserID.from_string(invite.sender))
@defer.inlineCallbacks
def get_joined_rooms_for_user(self, user):
"""Returns a list of roomids that the user has any of the given
membership states in."""
rooms = yield self.store.get_rooms_for_user(
user.to_string(),
)
# For some reason the list of events contains duplicates
# TODO(paul): work out why because I really don't think it should
room_ids = set(r.room_id for r in rooms)
defer.returnValue(room_ids)
@defer.inlineCallbacks
def do_3pid_invite(
self,