diff options
author | Amber Brown <hawkowl@atleastfornow.net> | 2019-05-29 17:37:06 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-05-29 17:37:06 +1000 |
commit | 7ddbbc45b745ab921828fcf04b65f1f9d13f5c82 (patch) | |
tree | df56eb14f8dd26511036a1305ec54988f7d27859 /synapse | |
parent | Merge pull request #5251 from matrix-org/rav/server_keys/01-check_sig (diff) | |
parent | regenerate sample config (diff) | |
download | synapse-7ddbbc45b745ab921828fcf04b65f1f9d13f5c82.tar.xz |
Merge pull request #5282 from aaronraimist/user-directory
Fix docs on resetting the user directory (#5036)
Diffstat (limited to 'synapse')
-rw-r--r-- | synapse/config/user_directory.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/synapse/config/user_directory.py b/synapse/config/user_directory.py index 142754a7dc..023997ccde 100644 --- a/synapse/config/user_directory.py +++ b/synapse/config/user_directory.py @@ -43,9 +43,9 @@ class UserDirectoryConfig(Config): # # 'search_all_users' defines whether to search all users visible to your HS # when searching the user directory, rather than limiting to users visible - # in public rooms. Defaults to false. If you set it True, you'll have to run - # UPDATE user_directory_stream_pos SET stream_id = NULL; - # on your database to tell it to rebuild the user_directory search indexes. + # in public rooms. Defaults to false. If you set it True, you'll have to + # rebuild the user_directory search indexes, see + # https://github.com/matrix-org/synapse/blob/master/docs/user_directory.md # #user_directory: # enabled: true |