diff options
author | Daniel Wagner-Hall <daniel@matrix.org> | 2015-11-10 17:10:27 +0000 |
---|---|---|
committer | Daniel Wagner-Hall <daniel@matrix.org> | 2015-11-10 17:10:27 +0000 |
commit | cf437900e0c689aad40f3da89866cf84c0f7ef65 (patch) | |
tree | 6623f80d23d38bc4b1720056914e8b14262efef4 /synapse/storage/events.py | |
parent | Merge pull request #355 from matrix-org/daniel/anonymouswriting (diff) | |
download | synapse-cf437900e0c689aad40f3da89866cf84c0f7ef65.tar.xz |
Return world_readable and guest_can_join in /publicRooms
Diffstat (limited to 'synapse/storage/events.py')
-rw-r--r-- | synapse/storage/events.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/synapse/storage/events.py b/synapse/storage/events.py index 59c9987202..4a365ff639 100644 --- a/synapse/storage/events.py +++ b/synapse/storage/events.py @@ -313,6 +313,8 @@ class EventsStore(SQLBaseStore): self._store_redaction(txn, event) elif event.type == EventTypes.RoomHistoryVisibility: self._store_history_visibility_txn(txn, event) + elif event.type == EventTypes.GuestAccess: + self._store_guest_access_txn(txn, event) self._store_room_members_txn( txn, |