summary refs log tree commit diff
path: root/rust/src/lib.rs
diff options
context:
space:
mode:
authorErik Johnston <erikj@element.io>2024-01-09 11:18:58 +0000
committerErik Johnston <erikj@element.io>2024-01-09 11:18:58 +0000
commit3f96c956f1a0221c544fd7a2d6f83ba5ed6927dc (patch)
tree9a103bc606a341678f0415e36343e8dfdccc821a /rust/src/lib.rs
parentFix 'block non-admins from publishing to room directory' (diff)
parentFilter out rooms from the room directory being served to other homeservers wh... (diff)
downloadsynapse-3f96c956f1a0221c544fd7a2d6f83ba5ed6927dc.tar.xz
Merge remote-tracking branch 'origin/develop' into matrix-org-hotfixes
Diffstat (limited to 'rust/src/lib.rs')
-rw-r--r--rust/src/lib.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/rust/src/lib.rs b/rust/src/lib.rs

index c44c09bda7..7b3b579e55 100644 --- a/rust/src/lib.rs +++ b/rust/src/lib.rs
@@ -3,6 +3,7 @@ use pyo3::prelude::*; use pyo3_log::ResetHandle; pub mod acl; +pub mod events; pub mod push; lazy_static! { @@ -41,6 +42,7 @@ fn synapse_rust(py: Python<'_>, m: &PyModule) -> PyResult<()> { acl::register_module(py, m)?; push::register_module(py, m)?; + events::register_module(py, m)?; Ok(()) }