diff options
author | Richard van der Hoff <1389908+richvdh@users.noreply.github.com> | 2018-07-24 10:43:30 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-24 10:43:30 +0100 |
commit | a6781450108f476c2c83d25a70e27f331e4c832e (patch) | |
tree | 2fbe0f15fe17c27664a6c4a7e0058e286bd6ed56 /docs/workers.rst | |
parent | another couple of logcontext leaks (diff) | |
parent | Merge pull request #3555 from matrix-org/erikj/client_apis_move (diff) | |
download | synapse-a6781450108f476c2c83d25a70e27f331e4c832e.tar.xz |
Merge branch 'develop' into rav/logcontext_fixes
Diffstat (limited to 'docs/workers.rst')
-rw-r--r-- | docs/workers.rst | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/workers.rst b/docs/workers.rst index 1d521b9ec5..c5b37c3ded 100644 --- a/docs/workers.rst +++ b/docs/workers.rst @@ -206,6 +206,10 @@ Handles client API endpoints. It can handle REST endpoints matching the following regular expressions:: ^/_matrix/client/(api/v1|r0|unstable)/publicRooms$ + ^/_matrix/client/(api/v1|r0|unstable)/rooms/.*/joined_members$ + ^/_matrix/client/(api/v1|r0|unstable)/rooms/.*/context/.*$ + ^/_matrix/client/(api/v1|r0|unstable)/rooms/.*/members$ + ^/_matrix/client/(api/v1|r0|unstable)/rooms/.*/state$ ``synapse.app.user_dir`` ~~~~~~~~~~~~~~~~~~~~~~~~ |