summary refs log tree commit diff
path: root/develop/modules/writing_a_module.html
diff options
context:
space:
mode:
authorreivilibre <reivilibre@users.noreply.github.com>2023-01-05 18:18:54 +0000
committerreivilibre <reivilibre@users.noreply.github.com>2023-01-05 18:18:54 +0000
commitd07f6856fecde7d0e397d8dc614c697d24dd2d40 (patch)
tree2285b490b9149919a6296d1fa64c3ef6d91abef4 /develop/modules/writing_a_module.html
parentdeploy: 44b476b26e50c642059d6110ba3dcbb1eec0b647 (diff)
downloadsynapse-d07f6856fecde7d0e397d8dc614c697d24dd2d40.tar.xz
deploy: 4eb2f4e02b83c90519a8a55c562d1fafab7caf0b
Diffstat (limited to 'develop/modules/writing_a_module.html')
-rw-r--r--develop/modules/writing_a_module.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/develop/modules/writing_a_module.html b/develop/modules/writing_a_module.html

index 5922ee854b..a7b6671d6f 100644 --- a/develop/modules/writing_a_module.html +++ b/develop/modules/writing_a_module.html
@@ -189,8 +189,8 @@ that Synapse does not allow registering resources for several sub-paths in the < namespace (such as anything under <code>/_matrix/client</code> for example). It is strongly recommended that modules register their web resources under the <code>/_synapse/client</code> namespace.</p> -<p>The provided resource is a Python class that implements Twisted's <a href="https://twistedmatrix.com/documents/current/api/twisted.web.resource.IResource.html">IResource</a> -interface (such as <a href="https://twistedmatrix.com/documents/current/api/twisted.web.resource.Resource.html">Resource</a>).</p> +<p>The provided resource is a Python class that implements Twisted's <a href="https://docs.twistedmatrix.com/en/stable/api/twisted.web.resource.IResource.html">IResource</a> +interface (such as <a href="https://docs.twistedmatrix.com/en/stable/api/twisted.web.resource.Resource.html">Resource</a>).</p> <p>Only one resource can be registered for a given path. If several modules attempt to register a resource for the same path, the module that appears first in Synapse's configuration file takes priority.</p>