diff options
author | Erik Johnston <erikj@jki.re> | 2018-07-24 10:42:28 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-24 10:42:28 +0100 |
commit | d436ad332c78cf0ad306f95c3f36f83190d2b133 (patch) | |
tree | 6ca24a89a40ea34be26412eb60cdd69f0f0caede /docs/workers.rst | |
parent | Merge pull request #3590 from matrix-org/rav/persist_events_metrics (diff) | |
parent | Merge branch 'develop' into erikj/client_apis_move (diff) | |
download | synapse-d436ad332c78cf0ad306f95c3f36f83190d2b133.tar.xz |
Merge pull request #3555 from matrix-org/erikj/client_apis_move
Make client_reader support some more read only APIs
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`` ~~~~~~~~~~~~~~~~~~~~~~~~ |