diff options
author | Vincent Petry <pvince81@owncloud.com> | 2013-10-09 16:54:36 +0200 |
---|---|---|
committer | Vincent Petry <pvince81@owncloud.com> | 2013-10-09 17:30:22 +0200 |
commit | b1f1357957c85c23ace4beed497df2128484d651 (patch) | |
tree | 183b071c6bb5ad1848e1232df82e3c7e12889b28 /apps/files_external/appinfo | |
parent | a18ebac108ad58d7b4298489fcb7ed3f22a99bb5 (diff) | |
download | nextcloud-server-b1f1357957c85c23ace4beed497df2128484d651.tar.gz nextcloud-server-b1f1357957c85c23ace4beed497df2128484d651.zip |
Added ownCloud backend for external storage
To make it possible to use the short ownCloud URL (without specifying
webdav.php or remote.php), a new backend is available for ownCloud.
The user must specify the host + context path in the "Url" field (which
is mapped to the "host" parameter) and the subdir to mount in the "Root"
field.
This is to prevent confusion because some users forget to append
webdav.php or remote.php to the WebDAV URL.
Fixes #4923
Diffstat (limited to 'apps/files_external/appinfo')
-rw-r--r-- | apps/files_external/appinfo/app.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/apps/files_external/appinfo/app.php b/apps/files_external/appinfo/app.php index dd0b76ed9d7..070740fb4d4 100644 --- a/apps/files_external/appinfo/app.php +++ b/apps/files_external/appinfo/app.php @@ -9,6 +9,7 @@ OC::$CLASSPATH['OC\Files\Storage\StreamWrapper'] = 'files_external/lib/streamwrapper.php'; OC::$CLASSPATH['OC\Files\Storage\FTP'] = 'files_external/lib/ftp.php'; OC::$CLASSPATH['OC\Files\Storage\DAV'] = 'files_external/lib/webdav.php'; +OC::$CLASSPATH['OC\Files\Storage\OwnCloud'] = 'files_external/lib/owncloud.php'; OC::$CLASSPATH['OC\Files\Storage\Google'] = 'files_external/lib/google.php'; OC::$CLASSPATH['OC\Files\Storage\SWIFT'] = 'files_external/lib/swift.php'; OC::$CLASSPATH['OC\Files\Storage\SMB'] = 'files_external/lib/smb.php'; |