diff options
author | Quentin Dufour <quentin@deuxfleurs.fr> | 2024-05-28 13:04:46 +0200 |
---|---|---|
committer | Quentin Dufour <quentin@deuxfleurs.fr> | 2024-05-28 13:04:46 +0200 |
commit | 410d663a5ecbb6ca46ac049227afdaaaf50ac27f (patch) | |
tree | c5ec222da00e2d6caf9a6c79b12cef3df59e5ef0 /aero-dav/src/realization.rs | |
parent | 10dac17ce173e584fc857f717f645c05b7cd42ac (diff) | |
download | aerogramme-410d663a5ecbb6ca46ac049227afdaaaf50ac27f.tar.gz aerogramme-410d663a5ecbb6ca46ac049227afdaaaf50ac27f.zip |
add a multistatus extension entrypoint
Diffstat (limited to 'aero-dav/src/realization.rs')
-rw-r--r-- | aero-dav/src/realization.rs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/aero-dav/src/realization.rs b/aero-dav/src/realization.rs index b37e0f1..1e6f25e 100644 --- a/aero-dav/src/realization.rs +++ b/aero-dav/src/realization.rs @@ -35,6 +35,7 @@ impl dav::Extension for Core { type ResourceType = Disabled; type ReportType = Disabled; type ReportTypeName = Disabled; + type Multistatus = Disabled; } // WebDAV with the base Calendar implementation (RFC4791) @@ -47,6 +48,7 @@ impl dav::Extension for Calendar { type ResourceType = cal::ResourceType; type ReportType = cal::ReportType<Calendar>; type ReportTypeName = cal::ReportTypeName; + type Multistatus = Disabled; } // ACL @@ -59,6 +61,7 @@ impl dav::Extension for Acl { type ResourceType = acl::ResourceType; type ReportType = Disabled; type ReportTypeName = Disabled; + type Multistatus = Disabled; } // All merged @@ -71,6 +74,7 @@ impl dav::Extension for All { type ResourceType = ResourceType; type ReportType = ReportType<All>; type ReportTypeName = ReportTypeName; + type Multistatus = Disabled; } #[derive(Debug, PartialEq, Clone)] |