diff options
author | Quentin Dufour <quentin@deuxfleurs.fr> | 2024-04-30 13:02:59 +0200 |
---|---|---|
committer | Quentin Dufour <quentin@deuxfleurs.fr> | 2024-04-30 13:02:59 +0200 |
commit | 6b9542088cd1b66af46e95b787493b601accb495 (patch) | |
tree | 1edf9db87881016079ff80d51f4f641c01f52ac8 /aero-proto/src/dav/controller.rs | |
parent | e1d7cf88afd9baab67d53823e95cb1b7f240802f (diff) | |
download | aerogramme-6b9542088cd1b66af46e95b787493b601accb495.tar.gz aerogramme-6b9542088cd1b66af46e95b787493b601accb495.zip |
Add icalendar dependency
Diffstat (limited to 'aero-proto/src/dav/controller.rs')
-rw-r--r-- | aero-proto/src/dav/controller.rs | 4 |
1 files changed, 3 insertions, 1 deletions
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"))?), }; |