diff options
author | Daniel Wagner-Hall <daniel@matrix.org> | 2015-11-10 16:57:13 +0000 |
---|---|---|
committer | Daniel Wagner-Hall <daniel@matrix.org> | 2015-11-10 16:57:13 +0000 |
commit | 38d82edf0e463e1e6eb6859330f2517cc7ae3e41 (patch) | |
tree | dcf5f90f670641aec7adb957186fd23f8d5b916f /synapse/api | |
parent | Merge pull request #356 from matrix-org/daniel/3pidyetagain (diff) | |
download | synapse-38d82edf0e463e1e6eb6859330f2517cc7ae3e41.tar.xz |
Allow guest users to join and message rooms
Diffstat (limited to 'synapse/api')
-rw-r--r-- | synapse/api/constants.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/synapse/api/constants.py b/synapse/api/constants.py index 41125e8719..c2450b771a 100644 --- a/synapse/api/constants.py +++ b/synapse/api/constants.py @@ -68,6 +68,7 @@ class EventTypes(object): RoomHistoryVisibility = "m.room.history_visibility" CanonicalAlias = "m.room.canonical_alias" RoomAvatar = "m.room.avatar" + GuestAccess = "m.room.guest_access" # These are used for validation Message = "m.room.message" |