feat(webdav): support copy directly without task (close #5206)

This commit is contained in:
Andy Hsu
2023-09-13 15:45:57 +08:00
parent 109015567a
commit 352a6a741a
3 changed files with 35 additions and 2 deletions

View File

@ -41,7 +41,7 @@ const (
OcrApi = "ocr_api"
FilenameCharMapping = "filename_char_mapping"
ForwardDirectLinkParams = "forward_direct_link_params"
WebauthnLoginEnabled = "webauthn_login_enabled"
WebauthnLoginEnabled = "webauthn_login_enabled"
// index
SearchIndex = "search_index"
@ -84,3 +84,8 @@ const (
TEXT
IMAGE
)
// ContextKey is the type of context keys.
const (
NoTaskKey = "no_task"
)