diff options
author | Olivier Wilkinson (reivilibre) <olivier@librepush.net> | 2019-08-29 15:01:27 +0100 |
---|---|---|
committer | Olivier Wilkinson (reivilibre) <olivier@librepush.net> | 2019-08-29 15:01:27 +0100 |
commit | f7ececb0acca62d969c197df66f9864a49a75b78 (patch) | |
tree | c1254c69f384eb7d3559936f956aa21c7e85755d /synapse/api/constants.py | |
parent | Merge pull request #5890 from matrix-org/rei/rss_inc3 (diff) | |
parent | Fix coverage in sytest and use plugins for buildkite (#5922) (diff) | |
download | synapse-f7ececb0acca62d969c197df66f9864a49a75b78.tar.xz |
Merge branch 'develop' into rei/rss_target
Diffstat (limited to 'synapse/api/constants.py')
-rw-r--r-- | synapse/api/constants.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/synapse/api/constants.py b/synapse/api/constants.py index 3ffde0d7fc..f29bce560c 100644 --- a/synapse/api/constants.py +++ b/synapse/api/constants.py @@ -122,7 +122,8 @@ class UserTypes(object): """ SUPPORT = "support" - ALL_USER_TYPES = (SUPPORT,) + BOT = "bot" + ALL_USER_TYPES = (SUPPORT, BOT) class RelationTypes(object): |