summaryrefslogtreecommitdiff
path: root/src/main.rs
diff options
context:
space:
mode:
authorTimo Kösters <timo@koesters.xyz>2023-07-02 16:06:54 +0200
committerTimo Kösters <timo@koesters.xyz>2023-07-02 22:12:06 +0200
commit9d49d599f3a1d5da535b71f2f8e4986c25b997e3 (patch)
tree2961f160f4943f4ee1cd655f26621bbe294ba75c /src/main.rs
parent6a6f8e80f144140ed14c74b54ace5357c10ac66d (diff)
downloadconduit-9d49d599f3a1d5da535b71f2f8e4986c25b997e3.zip
feat: space hierarchies
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs
index f9f88f4..3f14ca8 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -2,7 +2,8 @@
rust_2018_idioms,
unused_qualifications,
clippy::cloned_instead_of_copied,
- clippy::str_to_string
+ clippy::str_to_string,
+ clippy::future_not_send
)]
#![allow(clippy::suspicious_else_formatting)]
#![deny(clippy::dbg_macro)]
@@ -386,6 +387,7 @@ fn routes() -> Router {
.ruma_route(client_server::get_relating_events_with_rel_type_and_event_type_route)
.ruma_route(client_server::get_relating_events_with_rel_type_route)
.ruma_route(client_server::get_relating_events_route)
+ .ruma_route(client_server::get_hierarchy_route)
.ruma_route(server_server::get_server_version_route)
.route(
"/_matrix/key/v2/server",