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):