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 Oct 11, 2023
1 parent 35a2ac2 commit dc59043
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 @@ -113,7 +113,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 @@ -159,6 +160,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 @@ -183,6 +189,10 @@ async def handle_local_profile_change(
# FIXME(#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 @@ -192,6 +202,11 @@ async def handle_local_user_deactivated(self, user_id: str) -> None:
"""Called when a user ID is deactivated"""
# FIXME(#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 dc59043

Please sign in to comment.