diff options
author | Mark Haines <mark.haines@matrix.org> | 2016-01-13 11:07:32 +0000 |
---|---|---|
committer | Mark Haines <mark.haines@matrix.org> | 2016-01-13 11:07:32 +0000 |
commit | 96e400fee5bf821174730e1421a14e4aa94e3c0d (patch) | |
tree | 54a46d0b92ab21bc24487b1170e94a272c7884a7 /synapse/storage/room.py | |
parent | Remove the PushersTable and EventPushActionsTable objects (diff) | |
download | synapse-96e400fee5bf821174730e1421a14e4aa94e3c0d.tar.xz |
Remove the RoomsTable object
Diffstat (limited to 'synapse/storage/room.py')
-rw-r--r-- | synapse/storage/room.py | 16 |
1 files changed, 3 insertions, 13 deletions
diff --git a/synapse/storage/room.py b/synapse/storage/room.py index 390bd78654..dc09a3aaba 100644 --- a/synapse/storage/room.py +++ b/synapse/storage/room.py @@ -49,7 +49,7 @@ class RoomStore(SQLBaseStore): """ try: yield self._simple_insert( - RoomsTable.table_name, + "rooms", { "room_id": room_id, "creator": room_creator_user_id, @@ -70,9 +70,9 @@ class RoomStore(SQLBaseStore): A namedtuple containing the room information, or an empty list. """ return self._simple_select_one( - table=RoomsTable.table_name, + table="rooms", keyvalues={"room_id": room_id}, - retcols=RoomsTable.fields, + retcols=("room_id", "is_public", "creator"), desc="get_room", allow_none=True, ) @@ -275,13 +275,3 @@ class RoomStore(SQLBaseStore): aliases.extend(e.content['aliases']) defer.returnValue((name, aliases)) - - -class RoomsTable(object): - table_name = "rooms" - - fields = [ - "room_id", - "is_public", - "creator" - ] |