method(HttpMethod.parse("MKCOL")) { handle { call.webDavMkCol(call.webDavPath) } }
method(HttpMethod.parse("PUT")) { handle { call.webDavPut(call.webDavPath) } }
method(HttpMethod.parse("COPY")) { handle { call.webDavCopy(call.webDavPath) } }
- method(HttpMethod.parse("MOVE")) { handle { call.webDavMkCol(call.webDavPath) } }
+ method(HttpMethod.parse("MOVE")) { handle { call.webDavMove(call.webDavPath) } }
method(HttpMethod.parse("DELETE")) { handle { call.webDavDelete(call.webDavPath) } }
method(HttpMethod.parse("LOCK")) { handle { call.webDavLock(call.webDavPath) } }
method(HttpMethod.parse("UNLOCK")) { handle { call.webDavUnlock(call.webDavPath) } }