summary refs log tree commit diff
path: root/latest/modules
diff options
context:
space:
mode:
authorDMRobertson <DMRobertson@users.noreply.github.com>2023-01-17 12:46:31 +0000
committerDMRobertson <DMRobertson@users.noreply.github.com>2023-01-17 12:46:31 +0000
commit37b0c8b51348d6908a8a2e9086923ee8a24789e5 (patch)
tree4285a7f0b307a08d9c3a6fcb0eec66033aacd7c1 /latest/modules
parentdeploy: 2b084c5b710d9630178484e6ade597ca7fa814b6 (diff)
downloadsynapse-37b0c8b51348d6908a8a2e9086923ee8a24789e5.tar.xz
deploy: b6955673bfab5c8d553e8b43e9c50dd7b1212e2a
Diffstat (limited to 'latest/modules')
-rw-r--r--latest/modules/writing_a_module.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/latest/modules/writing_a_module.html b/latest/modules/writing_a_module.html

index 5922ee854b..a7b6671d6f 100644 --- a/latest/modules/writing_a_module.html +++ b/latest/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>