diff options
author | Erik Johnston <erik@matrix.org> | 2015-07-06 13:09:16 +0100 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2015-07-06 13:25:35 +0100 |
commit | 1a3255b507550c76f11251c890a43947b1f4e272 (patch) | |
tree | ea656a0697b96a8fde6a0fe91a559d2f2d002aef /synapse/api | |
parent | Rename key and values for m.room.history_visibility. Support 'invited' value (diff) | |
download | synapse-1a3255b507550c76f11251c890a43947b1f4e272.tar.xz |
Add m.room.history_visibility to newly created rooms' m.room.power_levels
Diffstat (limited to 'synapse/api')
-rw-r--r-- | synapse/api/auth.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/synapse/api/auth.py b/synapse/api/auth.py index deca747f72..1a25bf1086 100644 --- a/synapse/api/auth.py +++ b/synapse/api/auth.py @@ -575,6 +575,7 @@ class Auth(object): levels_to_check = [ ("users_default", []), ("events_default", []), + ("state_default", []), ("ban", []), ("redact", []), ("kick", []), |