Skip to content

Commit

Permalink
Hardcode the user directory to be disabled
Browse files Browse the repository at this point in the history
  • Loading branch information
turt2live committed May 18, 2024
1 parent e8d6b3a commit 8965780
Showing 1 changed file with 16 additions and 1 deletion.
17 changes: 16 additions & 1 deletion synapse/handlers/user_directory.py
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,8 @@ def __init__(self, hs: "HomeServer"):
# Set of server names.
self._is_refreshing_remote_profiles_for_servers: Set[str] = set()

if self.update_user_directory:
# T2B: Disable user directory
if self.update_user_directory and False:
self.notifier.add_replication_callback(self.notify_new_event)

# We kick this off so that we don't have to wait for a change before
Expand Down Expand Up @@ -170,6 +171,11 @@ async def search_users(

def notify_new_event(self) -> None:
"""Called when there may be more deltas to process"""

# T2B: Disable user directory
if True:
return

if not self.update_user_directory:
return

Expand All @@ -194,6 +200,10 @@ async def handle_local_profile_change(
# FIXME(https://github.com/matrix-org/synapse/issues/3714): We should
# probably do this in the same worker as all the other changes.

# T2B: Disable user directory
if True:
return

if await self.store.should_include_local_user_in_dir(user_id):
await self.store.update_profile_in_user_dir(
user_id, profile.display_name, profile.avatar_url
Expand All @@ -203,6 +213,11 @@ async def handle_local_user_deactivated(self, user_id: str) -> None:
"""Called when a user ID is deactivated"""
# FIXME(https://github.com/matrix-org/synapse/issues/3714): We should
# probably do this in the same worker as all the other changes.

# T2B: Disable user directory
if True:
return

await self.store.remove_from_user_dir(user_id)

async def _unsafe_process(self) -> None:
Expand Down

0 comments on commit 8965780

Please sign in to comment.