diff options
Diffstat (limited to '')
-rw-r--r-- | develop/server_notices.html | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/develop/server_notices.html b/develop/server_notices.html index 3280167f0c..e319f4487d 100644 --- a/develop/server_notices.html +++ b/develop/server_notices.html @@ -192,13 +192,15 @@ section, which should look like this:</p> <pre><code class="language-yaml">server_notices: system_mxid_localpart: server system_mxid_display_name: "Server Notices" - system_mxid_avatar_url: "mxc://server.com/oumMVlgDnLYFaPVkExemNVVZ" + system_mxid_avatar_url: "mxc://example.com/oumMVlgDnLYFaPVkExemNVVZ" room_name: "Server Notices" + room_avatar_url: "mxc://example.com/oumMVlgDnLYFaPVkExemNVVZ" + room_topic: "Room used by your server admin to notice you of important information" auto_join: true </code></pre> <p>The only compulsory setting is <code>system_mxid_localpart</code>, which defines the user id of the Server Notices user, as above. <code>room_name</code> defines the name of the -room which will be created.</p> +room which will be created, <code>room_avatar_url</code> its avatar and <code>room_topic</code> its topic.</p> <p><code>system_mxid_display_name</code> and <code>system_mxid_avatar_url</code> can be used to set the displayname and avatar of the Server Notices user.</p> <p><code>auto_join</code> will autojoin users to the notices room instead of sending an invite.</p> |