diff options
author | Erik Johnston <erik@matrix.org> | 2020-02-18 15:27:45 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-18 15:27:45 +0000 |
commit | 818def82486627513dc95e64c46c0bb452651e7e (patch) | |
tree | e63515061404722b3bb18fedd5d981d83631a51a /docs | |
parent | Merge pull request #6909 from matrix-org/babolivier/acme-install (diff) | |
download | synapse-818def82486627513dc95e64c46c0bb452651e7e.tar.xz |
Fix worker docs to point `/publicised_groups` API correctly. (#6938)
Diffstat (limited to 'docs')
-rw-r--r-- | docs/workers.md | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/docs/workers.md b/docs/workers.md index 6f7ec58780..0d84a58958 100644 --- a/docs/workers.md +++ b/docs/workers.md @@ -261,7 +261,8 @@ following regular expressions: ^/_matrix/client/versions$ ^/_matrix/client/(api/v1|r0|unstable)/voip/turnServer$ ^/_matrix/client/(api/v1|r0|unstable)/joined_groups$ - ^/_matrix/client/(api/v1|r0|unstable)/get_groups_publicised$ + ^/_matrix/client/(api/v1|r0|unstable)/publicised_groups$ + ^/_matrix/client/(api/v1|r0|unstable)/publicised_groups/ Additionally, the following REST endpoints can be handled for GET requests: @@ -287,8 +288,8 @@ the following regular expressions: ^/_matrix/client/(api/v1|r0|unstable)/user_directory/search$ -When using this worker you must also set `update_user_directory: False` in the -shared configuration file to stop the main synapse running background +When using this worker you must also set `update_user_directory: False` in the +shared configuration file to stop the main synapse running background jobs related to updating the user directory. ### `synapse.app.frontend_proxy` |