From 5a001c412083b7cafd8933140448bed2cf7a58d0 Mon Sep 17 00:00:00 2001 From: "M.Schmidt" Date: Thu, 25 Jun 2026 22:44:27 +0200 Subject: [PATCH] fix(webdav): remove spurious calendar_rest_handler module declaration The declaration was brought in by a cherry-pick but that handler does not exist on this branch, causing a compilation error. --- src/interfaces/api/handlers/mod.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/interfaces/api/handlers/mod.rs b/src/interfaces/api/handlers/mod.rs index d5603dc0..d31d688d 100644 --- a/src/interfaces/api/handlers/mod.rs +++ b/src/interfaces/api/handlers/mod.rs @@ -3,7 +3,6 @@ pub mod app_password_handler; pub mod auth_handler; pub mod batch_handler; pub mod caldav_handler; -pub mod calendar_rest_handler; pub mod carddav_handler; pub mod chunked_upload_handler; pub mod contacts_handler;