mirror of
https://github.com/element-hq/synapse.git
synced 2024-11-24 10:35:46 +03:00
add option to require auth for reading room dir
This commit is contained in:
parent
692250c6be
commit
b20602eeb8
2 changed files with 9 additions and 1 deletions
|
@ -43,6 +43,9 @@ class ServerConfig(Config):
|
|||
|
||||
self.filter_timeline_limit = config.get("filter_timeline_limit", -1)
|
||||
|
||||
self.require_auth_for_room_directory = \
|
||||
config.get("require_auth_for_room_directory", False)
|
||||
|
||||
if self.public_baseurl is not None:
|
||||
if self.public_baseurl[-1] != '/':
|
||||
self.public_baseurl += '/'
|
||||
|
@ -194,6 +197,11 @@ class ServerConfig(Config):
|
|||
# and sync operations. The default value is -1, means no upper limit.
|
||||
# filter_timeline_limit: 5000
|
||||
|
||||
# Set whether this server's public room directory is restricted to
|
||||
# local authenticated users, or visible to the wider world.
|
||||
# Default is to be visible to the wider world.
|
||||
require_auth_for_room_directory: False
|
||||
|
||||
# List of ports that Synapse should listen on, their purpose and their
|
||||
# configuration.
|
||||
listeners:
|
||||
|
|
|
@ -294,7 +294,7 @@ class PublicRoomListRestServlet(ClientV1RestServlet):
|
|||
# In both cases we call the auth function, as that has the side
|
||||
# effect of logging who issued this request if an access token was
|
||||
# provided.
|
||||
if server:
|
||||
if server or self.hs.config.require_auth_for_room_directory:
|
||||
raise e
|
||||
else:
|
||||
pass
|
||||
|
|
Loading…
Reference in a new issue