diff options
author | Robin McCorkell <rmccorkell@owncloud.com> | 2015-08-12 22:16:46 +0100 |
---|---|---|
committer | Robin McCorkell <rmccorkell@owncloud.com> | 2015-08-19 14:41:43 +0100 |
commit | 68418bdd34c92c17c1e7241fe6f1c5cfe5392178 (patch) | |
tree | 963eeb2caf050ba0d16ea86e8b85f515d1b8164f /apps/files_external/appinfo/app.php | |
parent | ab8c738b8d6de6ff984ec9d2397b92020a5c27c4 (diff) | |
download | nextcloud-server-68418bdd34c92c17c1e7241fe6f1c5cfe5392178.tar.gz nextcloud-server-68418bdd34c92c17c1e7241fe6f1c5cfe5392178.zip |
Migrate DAV external storage to new API
Diffstat (limited to 'apps/files_external/appinfo/app.php')
-rw-r--r-- | apps/files_external/appinfo/app.php | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/apps/files_external/appinfo/app.php b/apps/files_external/appinfo/app.php index 8df0f3054c3..62fcdba583f 100644 --- a/apps/files_external/appinfo/app.php +++ b/apps/files_external/appinfo/app.php @@ -157,19 +157,6 @@ if (!OC_Util::runningOnWindows()) { ]); } -OC_Mount_Config::registerBackend('\OC\Files\Storage\DAV', [ - 'backend' => 'WebDAV', - 'priority' => 100, - 'configuration' => [ - 'host' => (string)$l->t('URL'), - 'user' => (string)$l->t('Username'), - 'password' => '*'.$l->t('Password'), - 'root' => '&'.$l->t('Remote subfolder'), - 'secure' => '!'.$l->t('Secure https://'), - ], - 'has_dependencies' => true, -]); - OC_Mount_Config::registerBackend('\OC\Files\Storage\OwnCloud', [ 'backend' => 'ownCloud', 'priority' => 100, |