diff options
author | Patrick Cloke <clokep@users.noreply.github.com> | 2021-09-08 11:02:31 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-08 11:02:31 -0400 |
commit | 1fdf2cf8e84769c5e15ca8bb53fe61e5507365d7 (patch) | |
tree | 0cd8e88ce7d8e50cfda5e48446c0bc3cd01c5b90 /docs/workers.md | |
parent | Skip handling of push actions for outlier events (#10780) (diff) | |
download | synapse-1fdf2cf8e84769c5e15ca8bb53fe61e5507365d7.tar.xz |
Document that /spaces & /hierarchy can be routed to workers. (#10648)
Also refactors some of the registration of endpoints on workers.
Diffstat (limited to 'docs/workers.md')
-rw-r--r-- | docs/workers.md | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/docs/workers.md b/docs/workers.md index 3121241894..f1673d67d0 100644 --- a/docs/workers.md +++ b/docs/workers.md @@ -209,6 +209,8 @@ expressions: ^/_matrix/federation/v1/user/devices/ ^/_matrix/federation/v1/get_groups_publicised$ ^/_matrix/key/v2/query + ^/_matrix/federation/unstable/org.matrix.msc2946/spaces/ + ^/_matrix/federation/unstable/org.matrix.msc2946/hierarchy/ # Inbound federation transaction request ^/_matrix/federation/v1/send/ @@ -220,6 +222,9 @@ expressions: ^/_matrix/client/(api/v1|r0|unstable)/rooms/.*/context/.*$ ^/_matrix/client/(api/v1|r0|unstable)/rooms/.*/members$ ^/_matrix/client/(api/v1|r0|unstable)/rooms/.*/state$ + ^/_matrix/client/unstable/org.matrix.msc2946/rooms/.*/spaces$ + ^/_matrix/client/unstable/org.matrix.msc2946/rooms/.*/hierarchy$ + ^/_matrix/client/unstable/im.nheko.summary/rooms/.*/summary$ ^/_matrix/client/(api/v1|r0|unstable)/account/3pid$ ^/_matrix/client/(api/v1|r0|unstable)/devices$ ^/_matrix/client/(api/v1|r0|unstable)/keys/query$ |