mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2024-10-01 11:49:51 -04:00
Pull out config option
This commit is contained in:
parent
7529038e66
commit
2c90422146
@ -44,7 +44,7 @@ EMPTY_THIRD_PARTY_ID = ThirdPartyInstanceID(None, None)
|
|||||||
class RoomListHandler(BaseHandler):
|
class RoomListHandler(BaseHandler):
|
||||||
def __init__(self, hs):
|
def __init__(self, hs):
|
||||||
super(RoomListHandler, self).__init__(hs)
|
super(RoomListHandler, self).__init__(hs)
|
||||||
self.config = hs.config
|
self.enable_room_list_search = hs.config.enable_room_list_search
|
||||||
self.response_cache = ResponseCache(hs, "room_list")
|
self.response_cache = ResponseCache(hs, "room_list")
|
||||||
self.remote_response_cache = ResponseCache(hs, "remote_room_list",
|
self.remote_response_cache = ResponseCache(hs, "remote_room_list",
|
||||||
timeout_ms=30 * 1000)
|
timeout_ms=30 * 1000)
|
||||||
@ -67,7 +67,7 @@ class RoomListHandler(BaseHandler):
|
|||||||
appservice and network id to use an appservice specific one.
|
appservice and network id to use an appservice specific one.
|
||||||
Setting to None returns all public rooms across all lists.
|
Setting to None returns all public rooms across all lists.
|
||||||
"""
|
"""
|
||||||
if not self.config.enable_room_list_search:
|
if not self.enable_room_list_search:
|
||||||
return defer.succeed({
|
return defer.succeed({
|
||||||
"chunk": [],
|
"chunk": [],
|
||||||
"total_room_count_estimate": 0,
|
"total_room_count_estimate": 0,
|
||||||
@ -449,7 +449,7 @@ class RoomListHandler(BaseHandler):
|
|||||||
def get_remote_public_room_list(self, server_name, limit=None, since_token=None,
|
def get_remote_public_room_list(self, server_name, limit=None, since_token=None,
|
||||||
search_filter=None, include_all_networks=False,
|
search_filter=None, include_all_networks=False,
|
||||||
third_party_instance_id=None,):
|
third_party_instance_id=None,):
|
||||||
if not self.config.enable_room_list_search:
|
if not self.enable_room_list_search:
|
||||||
defer.returnValue({
|
defer.returnValue({
|
||||||
"chunk": [],
|
"chunk": [],
|
||||||
"total_room_count_estimate": 0,
|
"total_room_count_estimate": 0,
|
||||||
|
Loading…
Reference in New Issue
Block a user