Merge branch 'hs/bot-user-type' into hs/exempt-support-users-from-consent

pull/5902/head
Half-Shot 2019-08-23 09:55:57 +01:00
commit ffa5b757c7
2 changed files with 3 additions and 1 deletions

1
changelog.d/5903.feature Normal file
View File

@ -0,0 +1 @@
Add bot user type.

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