From 6b9542088cd1b66af46e95b787493b601accb495 Mon Sep 17 00:00:00 2001 From: Quentin Dufour Date: Tue, 30 Apr 2024 13:02:59 +0200 Subject: Add icalendar dependency --- aero-proto/src/dav/controller.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'aero-proto') diff --git a/aero-proto/src/dav/controller.rs b/aero-proto/src/dav/controller.rs index f3b5496..885828f 100644 --- a/aero-proto/src/dav/controller.rs +++ b/aero-proto/src/dav/controller.rs @@ -104,9 +104,11 @@ impl Controller { // Multiget is really like a propfind where Depth: 0|1|Infinity is replaced by an arbitrary // list of URLs + // @FIXME let multiget = match report { cal::Report::Multiget(m) => m, - _ => return Ok(Response::builder() + cal::Report::Query(q) => todo!(), + cal::Report::FreeBusy(_) => return Ok(Response::builder() .status(501) .body(text_body("Not implemented"))?), }; -- cgit v1.2.3