-
Notifications
You must be signed in to change notification settings - Fork 1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #18598 from sanjaysrikakulam/webdav_as_user_file_s…
…ource Bring your own file sources: Add the WebDAV template and configuration
- Loading branch information
Showing
12 changed files
with
97 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
- id: webdav | ||
version: 0 | ||
name: WebDAV | ||
description: | | ||
The WebDAV protocol is a simple way to access files over the internet. This template | ||
configuration allows you to connect to a WebDAV server. | ||
variables: | ||
url: | ||
label: Server Domain (e.g. https://myowncloud.org) | ||
type: string | ||
help: | | ||
The domain of the WebDAV server you are connecting to. This should be the full URL | ||
including the protocol (http or https) and the domain name. | ||
root: | ||
label: WebDAV server Path (should end with /remote.php/webdav, e.g. /a/sub/path/remote.php/webdav) | ||
type: string | ||
help: | | ||
The full server path to the WebDAV service. Ensure the path includes /remote.php/webdav. | ||
login: | ||
label: Username | ||
type: string | ||
help: | | ||
The username to use to connect to the WebDAV server. This should be the username you use | ||
to log in to the WebDAV server. | ||
writable: | ||
label: Writable? | ||
type: boolean | ||
default: false | ||
help: Allow Galaxy to write data to this WebDAV server. | ||
secrets: | ||
password: | ||
label: Password | ||
help: | | ||
The password to use to connect to the WebDAV server. This should be the password you use | ||
to log in to the WebDAV server. | ||
configuration: | ||
type: webdav | ||
url: '{{ variables.url }}' | ||
root: '{{ variables.root }}' | ||
login: '{{ variables.login }}' | ||
writable: '{{ variables.writable }}' | ||
password: '{{ secrets.password }}' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters