Fix spelling & add experimental API comment

This commit is contained in:
David Baker 2018-04-25 11:40:37 +01:00
parent 6554253f48
commit 643c89d497
2 changed files with 3 additions and 2 deletions

View File

@ -47,6 +47,7 @@ class UserDirectoryConfig(Config):
# search_all_users: false
#
# If this is set, user search will be delegated to this ID server instead
# of synapse performing the saerch itself.
# of synapse performing the search itself.
# This is an experimental API.
# defer_to_id_server: id.example.com
"""

View File

@ -64,7 +64,7 @@ class UserDirectorySearchRestServlet(RestServlet):
if self.hs.config.user_directory_defer_to_id_server:
signed_body = sign_json(body, self.hs.hostname, self.hs.config.signing_key[0])
url = "https://%s/_matrix/identity/api/v1/user_directory/search" % (
url = "http://%s/_matrix/identity/api/v1/user_directory/search" % (
self.hs.config.user_directory_defer_to_id_server,
)
resp = yield self.http_client.post_json_get_json(url, signed_body)