Skip to content
This repository has been archived by the owner on Apr 26, 2024. It is now read-only.

Commit

Permalink
Merge pull request #4392 from matrix-org/neilj/fix_user_type_typo
Browse files Browse the repository at this point in the history
ALL_USER_TYPES should be a tuple
  • Loading branch information
erikjohnston authored Jan 15, 2019
2 parents 7e41545 + 9ec56d6 commit aa955f2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions changelog.d/4392.bugfix
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Fix typo in ALL_USER_TYPES definition to ensure type is a tuple
2 changes: 1 addition & 1 deletion synapse/api/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,)

0 comments on commit aa955f2

Please sign in to comment.