1
0
Fork 0
mirror of https://github.com/element-hq/synapse.git synced 2025-03-15 04:07:43 +00:00

Add bot type

This commit is contained in:
Half-Shot 2019-08-23 09:52:09 +01:00
parent 8767b63a82
commit d9b8cf81be

View file

@ -122,7 +122,8 @@ class UserTypes(object):
"""
SUPPORT = "support"
ALL_USER_TYPES = (SUPPORT,)
BOT = "bot"
ALL_USER_TYPES = (SUPPORT, BOT)
class RelationTypes(object):