internal: add PROPPATCH support to server

This commit is contained in:
Simon Ser
2020-01-21 23:18:27 +01:00
parent 4cee748898
commit 90fe8dedf7
4 changed files with 46 additions and 0 deletions

View File

@@ -261,6 +261,10 @@ func (b *backend) propfindAddressObject(propfind *internal.Propfind, ao *Address
return internal.NewPropfindResponse(ao.Href, propfind, props)
}
func (b *backend) Proppatch(r *http.Request, update *internal.Propertyupdate) (*internal.Response, error) {
panic("TODO")
}
func (b *backend) Put(r *http.Request) error {
panic("TODO")
}