mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2024-10-01 11:49:51 -04:00
Merge pull request #4392 from matrix-org/neilj/fix_user_type_typo
ALL_USER_TYPES should be a tuple
This commit is contained in:
commit
aa955f2d15
1
changelog.d/4392.bugfix
Normal file
1
changelog.d/4392.bugfix
Normal file
@ -0,0 +1 @@
|
||||
Fix typo in ALL_USER_TYPES definition to ensure type is a tuple
|
@ -128,4 +128,4 @@ class UserTypes(object):
|
||||
'admin' and 'guest' users should also be UserTypes. Normal users are type None
|
||||
"""
|
||||
SUPPORT = "support"
|
||||
ALL_USER_TYPES = (SUPPORT)
|
||||
ALL_USER_TYPES = (SUPPORT,)
|
||||
|
Loading…
Reference in New Issue
Block a user