diff options
author | Travis Ralston <travpc@gmail.com> | 2018-04-04 08:46:17 -0600 |
---|---|---|
committer | Travis Ralston <travpc@gmail.com> | 2018-04-04 08:46:17 -0600 |
commit | 204fc985204f0c24574ad2bf9fa9518d4fa7552d (patch) | |
tree | 47adc579c449d850412da07692e0a6973334f7c9 /docs/workers.rst | |
parent | Move the mention of the main synapse worker higher up (diff) | |
download | synapse-204fc985204f0c24574ad2bf9fa9518d4fa7552d.tar.xz |
Document the additional routes for the event_creator worker
Fixes https://github.com/matrix-org/synapse/issues/3018 Signed-off-by: Travis Ralston <travpc@gmail.com>
Diffstat (limited to '')
-rw-r--r-- | docs/workers.rst | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/docs/workers.rst b/docs/workers.rst index bf8dd1ee48..c3868d6e41 100644 --- a/docs/workers.rst +++ b/docs/workers.rst @@ -235,9 +235,11 @@ file. For example:: ``synapse.app.event_creator`` ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -Handles non-state event creation. It can handle REST endpoints matching: +Handles some event creation. It can handle REST endpoints matching: ^/_matrix/client/(api/v1|r0|unstable)/rooms/.*/send + ^/_matrix/client/(api/v1|r0|unstable)/rooms/.*/(join|invite|leave|ban|unban|kick)$ + ^/_matrix/client/(api/v1|r0|unstable)/join/ It will create events locally and then send them on to the main synapse instance to be persisted and handled. |