dav: Add namespace to propname

This commit is contained in:
Lennart
2025-05-10 13:13:51 +02:00
parent 37eb6df64a
commit 8f69bc839a
5 changed files with 33 additions and 18 deletions

View File

@@ -54,8 +54,14 @@ fn propfind_prop() {
propfind,
PropfindElement {
prop: PropfindType::Prop(PropElement(vec![
Propname("displayname".to_owned()),
Propname("color".to_owned()),
Propname {
name: "displayname".to_owned(),
ns: Some("DAV:".to_owned())
},
Propname {
name: "color".to_owned(),
ns: Some("DAV:".to_owned())
},
]))
}
);