webdav: add support for PUT to server

This commit is contained in:
Simon Ser
2020-01-21 21:19:44 +01:00
parent 45774fe572
commit 7d6de88179
4 changed files with 37 additions and 0 deletions

View File

@@ -260,3 +260,7 @@ func (b *backend) propfindAddressObject(propfind *internal.Propfind, ao *Address
return internal.NewPropfindResponse(ao.Href, propfind, props)
}
func (b *backend) Put(r *http.Request) error {
panic("TODO")
}