diff options
author | Erik Johnston <erik@matrix.org> | 2018-02-06 17:23:13 +0000 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2018-02-07 10:34:31 +0000 |
commit | f133228cb35b7803910688e7060772cb9e64f01a (patch) | |
tree | 9cc2496cd2305cc153c8b50959c07bc88771954a /docs | |
parent | Move presence handling into handle_new_client_event (diff) | |
download | synapse-f133228cb35b7803910688e7060772cb9e64f01a.tar.xz |
Add note in docs/workers.rst
Diffstat (limited to 'docs')
-rw-r--r-- | docs/workers.rst | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/docs/workers.rst b/docs/workers.rst index b39f79058e..213d57e47c 100644 --- a/docs/workers.rst +++ b/docs/workers.rst @@ -207,3 +207,14 @@ the ``worker_main_http_uri`` setting in the frontend_proxy worker configuration file. For example:: worker_main_http_uri: http://127.0.0.1:8008 + + +``synapse.app.event_creator`` +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +Handles non-state event creation. It can handle REST endpoints matching: + + ^/_matrix/client/(api/v1|r0|unstable)/rooms/.*/send + +It will create events locally and then send them on to the main synapse +instance to be persisted and handled. |