Make the words compliant with synapse standards
Co-Authored-By: Andrew Morgan <1342360+anoadragon453@users.noreply.github.com>
2 files changed, 3 insertions, 3 deletions
diff --git a/changelog.d/6523.feature b/changelog.d/6523.feature
index 88c77df6a2..798fa143df 100644
--- a/changelog.d/6523.feature
+++ b/changelog.d/6523.feature
@@ -1 +1 @@
-Add option `limit_profile_requests_to_users_who_share_rooms` to prevent requirement of a user sharing a room with another user to query their profile information.
+Add option `limit_profile_requests_to_users_who_share_rooms` to prevent requirement of a local user sharing a room with another user to query their profile information.
diff --git a/synapse/config/server.py b/synapse/config/server.py
index 5298ae6881..6dcf9119cb 100644
--- a/synapse/config/server.py
+++ b/synapse/config/server.py
@@ -627,12 +627,12 @@ class ServerConfig(Config):
#
#require_auth_for_profile_requests: true
- # Whether to require a user to share a room with another user in order
+ # Uncomment to require a user to share a room with another user in order
# to retrieve their profile information. Only checked on Client-Server
# requests. Profile requests from other servers should be checked by the
# requesting server. Defaults to 'false'.
#
- #limit_profile_requests_to_users_who_share_rooms: false
+ #limit_profile_requests_to_users_who_share_rooms: true
# If set to 'true', removes the need for authentication to access the server's
# public rooms directory through the client API, meaning that anyone can
|