mirror of
https://github.com/element-hq/synapse.git
synced 2024-12-18 08:54:54 +03:00
Using the manhole to send server notices
This commit is contained in:
parent
5ad1149f38
commit
052d08a6a5
1 changed files with 13 additions and 0 deletions
|
@ -51,3 +51,16 @@ The only compulsory setting is `system_mxid_localpart`, which defines the user
|
||||||
id of the server notices user, as above. `system_mxid_display_name` and
|
id of the server notices user, as above. `system_mxid_display_name` and
|
||||||
`room_name` define the displayname of the system notices user, and of
|
`room_name` define the displayname of the system notices user, and of
|
||||||
the notices room, respectively.
|
the notices room, respectively.
|
||||||
|
|
||||||
|
Sending notices
|
||||||
|
---------------
|
||||||
|
|
||||||
|
As of the current version of synapse, there is no convenient interface for
|
||||||
|
sending notices (other than the automated ones sent as part of consent
|
||||||
|
tracking).
|
||||||
|
|
||||||
|
In the meantime, it is possible to test this feature using the manhole. Having gone into the manhole as described in [manhole.md](manhole.md), a notice can be sent with something like:
|
||||||
|
|
||||||
|
```
|
||||||
|
>>> hs.get_server_notices_manager().send_notice('@user:server.com', {'msgtype':'m.text', 'body':'foo'})
|
||||||
|
```
|
||||||
|
|
Loading…
Reference in a new issue