diff options
author | Erik Johnston <erikj@jki.re> | 2019-02-18 17:18:06 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-02-18 17:18:06 +0000 |
commit | fc2c245a1f6a2735782d5fe5d65784b4935d1937 (patch) | |
tree | 7058a9de4246c62840f123ea8580c7d497a68c75 /docs | |
parent | Merge pull request #4668 from matrix-org/erikj/catch_exceptions (diff) | |
parent | Move register_device into handler (diff) | |
download | synapse-fc2c245a1f6a2735782d5fe5d65784b4935d1937.tar.xz |
Merge pull request #4666 from matrix-org/erikj/register_login_split
Split out registration to worker
Diffstat (limited to 'docs')
-rw-r--r-- | docs/workers.rst | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/docs/workers.rst b/docs/workers.rst index dd3a84ba0d..6ce7d88c11 100644 --- a/docs/workers.rst +++ b/docs/workers.rst @@ -223,6 +223,12 @@ following regular expressions:: ^/_matrix/client/(api/v1|r0|unstable)/rooms/.*/members$ ^/_matrix/client/(api/v1|r0|unstable)/rooms/.*/state$ +Additionally, the following REST endpoints can be handled, but all requests must +be routed to the same instance:: + + ^/_matrix/client/(api/v1|r0|unstable)/register$ + + ``synapse.app.user_dir`` ~~~~~~~~~~~~~~~~~~~~~~~~ |