summary refs log tree commit diff
path: root/synapse/api/constants.py
diff options
context:
space:
mode:
authorAndrew Morgan <andrew@amorgan.xyz>2020-02-24 17:19:09 +0000
committerAndrew Morgan <andrew@amorgan.xyz>2020-02-24 17:19:09 +0000
commit3d5f1ebf064454fe347485e00a98fcb89ef396f1 (patch)
tree9024af0746b5d0539f5a1096dbc08c75bc38b894 /synapse/api/constants.py
parentLet synctl use a config directory. (#5904) (diff)
parentMerge pull request #5902 from matrix-org/hs/exempt-support-users-from-consent (diff)
downloadsynapse-3d5f1ebf064454fe347485e00a98fcb89ef396f1.tar.xz
Merge pull request #5902 from matrix-org/hs/exempt-support-users-from-consent
Diffstat (limited to 'synapse/api/constants.py')
-rw-r--r--synapse/api/constants.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/synapse/api/constants.py b/synapse/api/constants.py

index c7cae9768f..956b86f6cf 100644 --- a/synapse/api/constants.py +++ b/synapse/api/constants.py
@@ -125,7 +125,8 @@ class UserTypes(object): """ SUPPORT = "support" - ALL_USER_TYPES = (SUPPORT,) + BOT = "bot" + ALL_USER_TYPES = (SUPPORT, BOT) class RelationTypes(object):