mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-07-26 23:45:20 -04:00
Disable pushing for server ACL events (MSC3786). (#13997)
Switches to the stable identifier for MSC3786 and enables it by default. This disables pushes of m.room.server_acl events.
This commit is contained in:
parent
27fa0fa698
commit
e70c6b720e
6 changed files with 5 additions and 25 deletions
|
@ -81,15 +81,10 @@ def _load_rules(
|
|||
for rawrule in rawrules
|
||||
]
|
||||
|
||||
push_rules = PushRules(
|
||||
ruleslist,
|
||||
)
|
||||
push_rules = PushRules(ruleslist)
|
||||
|
||||
filtered_rules = FilteredPushRules(
|
||||
push_rules,
|
||||
enabled_map,
|
||||
msc3786_enabled=experimental_config.msc3786_enabled,
|
||||
msc3772_enabled=experimental_config.msc3772_enabled,
|
||||
push_rules, enabled_map, msc3772_enabled=experimental_config.msc3772_enabled
|
||||
)
|
||||
|
||||
return filtered_rules
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue