webdav: add DELETE support to server

This commit is contained in:
Simon Ser
2020-01-21 21:46:01 +01:00
parent 69f88b075a
commit 41b68829e8
5 changed files with 51 additions and 17 deletions

View File

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