Make simple query rather than long one and then throw away half the results

This commit is contained in:
Erik Johnston 2015-04-30 10:16:12 +01:00
parent b1ca784aca
commit 1d7702833d
2 changed files with 11 additions and 2 deletions

View file

@ -75,6 +75,16 @@ class RoomStore(SQLBaseStore):
allow_none=True,
)
def get_public_room_ids(self):
return self._simple_select_onecol(
table="rooms",
keyvalues={
"is_public": True,
},
retcol="room_id",
desc="get_public_room_ids",
)
@defer.inlineCallbacks
def get_rooms(self, is_public):
"""Retrieve a list of all public rooms.