dav: update get_members

This commit is contained in:
Lennart
2024-05-25 22:08:37 +02:00
parent 5eced9e321
commit d0f652a951
6 changed files with 6 additions and 29 deletions

View File

@@ -64,11 +64,7 @@ impl ResourceService for RootResource {
type MemberType = RootFile;
type File = RootFile;
async fn get_members(
&self,
_auth_info: AuthInfo,
_path_components: Self::PathComponents,
) -> Result<Vec<Self::MemberType>> {
async fn get_members(&self, _auth_info: AuthInfo) -> Result<Vec<Self::MemberType>> {
Ok(vec![])
}