summary refs log tree commit diff
path: root/synapse/api
diff options
context:
space:
mode:
authorErik Johnston <erik@matrix.org>2015-10-02 11:22:56 +0100
committerErik Johnston <erik@matrix.org>2015-10-02 11:22:56 +0100
commit40017a9a114aa917d7cb3231da08465f7500ab41 (patch)
tree24119e131c66f646431d5c2a63b52a551e9fcf27 /synapse/api
parentMerge pull request #275 from matrix-org/erikj/invite_state (diff)
downloadsynapse-40017a9a114aa917d7cb3231da08465f7500ab41.tar.xz
Add 'trusted_private_chat' to room creation presets
Diffstat (limited to 'synapse/api')
-rw-r--r--synapse/api/constants.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/synapse/api/constants.py b/synapse/api/constants.py
index 3385664394..008ee64727 100644
--- a/synapse/api/constants.py
+++ b/synapse/api/constants.py
@@ -83,3 +83,4 @@ class RejectedReason(object):
 class RoomCreationPreset(object):
     PRIVATE_CHAT = "private_chat"
     PUBLIC_CHAT = "public_chat"
+    TRUSTED_PRIVATE_CHAT = "trusted_private_chat"