mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2024-10-01 11:49:51 -04:00
Merge branch 'hs/bot-user-type' into hs/exempt-support-users-from-consent
This commit is contained in:
commit
ffa5b757c7
1
changelog.d/5903.feature
Normal file
1
changelog.d/5903.feature
Normal file
@ -0,0 +1 @@
|
|||||||
|
Add bot user type.
|
@ -122,7 +122,8 @@ class UserTypes(object):
|
|||||||
"""
|
"""
|
||||||
|
|
||||||
SUPPORT = "support"
|
SUPPORT = "support"
|
||||||
ALL_USER_TYPES = (SUPPORT,)
|
BOT = "bot"
|
||||||
|
ALL_USER_TYPES = (SUPPORT, BOT)
|
||||||
|
|
||||||
|
|
||||||
class RelationTypes(object):
|
class RelationTypes(object):
|
||||||
|
Loading…
Reference in New Issue
Block a user