dav: add new http IMPORT method

This commit is contained in:
Lennart
2025-08-20 13:48:50 +02:00
parent de2a8a2a8e
commit 9decef093d
2 changed files with 13 additions and 0 deletions

View File

@@ -97,6 +97,11 @@ where
return svc(self.resource_service.clone(), req);
}
}
"IMPORT" => {
if let Some(svc) = RS::import() {
return svc(self.resource_service.clone(), req);
}
}
_ => {}
};
Box::pin(async move {