Add bot type

pull/5903/head
Half-Shot 2019-08-23 09:52:09 +01:00
parent 8767b63a82
commit d9b8cf81be
1 changed files with 2 additions and 1 deletions

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