Feat: finish WebDAV adaptation

This commit is contained in:
HFO4
2019-12-20 15:08:04 +08:00
parent c1b02380ac
commit e97ed216f2
15 changed files with 44 additions and 4848 deletions

View File

@@ -25,6 +25,7 @@ func initWebDAV(group *gin.RouterGroup) {
group.Handle("UNLOCK", ":uid/*path", controllers.ServeWebDAV)
group.Handle("PROPPATCH", ":uid/*path", controllers.ServeWebDAV)
group.Handle("COPY", ":uid/*path", controllers.ServeWebDAV)
group.Handle("MOVE", ":uid/*path", controllers.ServeWebDAV)
}
}