summary refs log tree commit diff
path: root/synapse/handlers/directory.py
diff options
context:
space:
mode:
authorAndrew Morgan <andrew@amorgan.xyz>2023-03-08 17:05:00 +0000
committerAndrew Morgan <andrew@amorgan.xyz>2023-03-08 17:05:00 +0000
commitcb8d9e3d75dd5d6897b562e76eb5767fbd4b78a3 (patch)
tree96bdcbb3cabbf10cdbd04f90d08eb6c6bc83e4d9 /synapse/handlers/directory.py
parentMove ThirdPartyEventRules into module_api/callbacks (diff)
downloadsynapse-github/anoa/public_rooms_module_api_backup.tar.xz
Update usages of ThirdPartyEventRules module callbacks github/anoa/public_rooms_module_api_backup anoa/public_rooms_module_api_backup
Diffstat (limited to 'synapse/handlers/directory.py')
-rw-r--r--synapse/handlers/directory.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/synapse/handlers/directory.py b/synapse/handlers/directory.py

index 5e8316e2e5..1e0623c7f8 100644 --- a/synapse/handlers/directory.py +++ b/synapse/handlers/directory.py
@@ -52,7 +52,9 @@ class DirectoryHandler: self.config = hs.config self.enable_room_list_search = hs.config.roomdirectory.enable_room_list_search self.require_membership = hs.config.server.require_membership_for_aliases - self.third_party_event_rules = hs.get_third_party_event_rules() + self._third_party_event_rules = ( + hs.get_module_api_callbacks().third_party_event_rules + ) self.server_name = hs.hostname self.federation = hs.get_federation_client() @@ -503,7 +505,7 @@ class DirectoryHandler: # Check if publishing is blocked by a third party module allowed_by_third_party_rules = ( await ( - self.third_party_event_rules.check_visibility_can_be_modified( + self._third_party_event_rules.check_visibility_can_be_modified( room_id, visibility ) )