Disable carddav entrypoint

This commit is contained in:
Lennart
2024-06-28 21:54:23 +02:00
parent 55e6faf822
commit e131bed390

View File

@@ -36,9 +36,8 @@ pub fn make_app<CS: CalendarStore + ?Sized, A: CheckAuthentication>(
})) }))
.service( .service(
web::scope("/.well-known") web::scope("/.well-known")
.configure(|cfg| rustical_caldav::configure_well_known(cfg, "/caldav".to_string())) .configure(|cfg| rustical_caldav::configure_well_known(cfg, "/caldav".to_string())), // .configure(|cfg| {
.configure(|cfg| { // rustical_carddav::configure_well_known(cfg, "/carddav".to_string())
rustical_carddav::configure_well_known(cfg, "/carddav".to_string()) // }),
}),
) )
} }