From fd69a8506b9b7eb2ee2a89fab2326fad6eac991b Mon Sep 17 00:00:00 2001 From: Sanjay Kumar Srikakulam Date: Fri, 11 Oct 2024 15:58:56 +0000 Subject: [PATCH] lint and rebase fix --- client/src/components/FileSources/FileSourceTypeSpan.vue | 1 + lib/galaxy/files/templates/models.py | 1 + 2 files changed, 2 insertions(+) diff --git a/client/src/components/FileSources/FileSourceTypeSpan.vue b/client/src/components/FileSources/FileSourceTypeSpan.vue index e41b3b32858d..d98cdce9d622 100644 --- a/client/src/components/FileSources/FileSourceTypeSpan.vue +++ b/client/src/components/FileSources/FileSourceTypeSpan.vue @@ -9,6 +9,7 @@ const MESSAGES = { azure: "This is an remote file source plugin based on the Azure service.", onedata: "This is an remote file source plugin based on the Onedata service.", ftp: "This is an remote file source plugin based on the FTP protocol.", + webdav: "This is an remote file source plugin based on the WebDAV protocol.", }; interface Props { diff --git a/lib/galaxy/files/templates/models.py b/lib/galaxy/files/templates/models.py index a849ee8d24f8..bff512f130ca 100644 --- a/lib/galaxy/files/templates/models.py +++ b/lib/galaxy/files/templates/models.py @@ -121,6 +121,7 @@ class OnedataFileSourceConfiguration(StrictModel): disable_tls_certificate_validation: bool = False writable: bool = False + class WebdavFileSourceTemplateConfiguration(StrictModel): type: Literal["webdav"] url: Union[str, TemplateExpansion]