]> source.dussan.org Git - nextcloud-server.git/commitdiff
Add Samba Share parameter to external storage UI
authorMichael Gapczynski <mtgap@owncloud.com>
Wed, 27 Jun 2012 16:24:21 +0000 (12:24 -0400)
committerMichael Gapczynski <mtgap@owncloud.com>
Wed, 27 Jun 2012 16:24:21 +0000 (12:24 -0400)
apps/files_external/lib/config.php

index 5b9e00a3783aa6d8b1eea943d12ba3c6d12c75db..95f8beeb49e0d78bbbcc7b87a3721148f1e7552c 100755 (executable)
@@ -45,7 +45,7 @@ class OC_Mount_Config {
                        'OC_Filestorage_FTP' => array('backend' => 'FTP', 'configuration' => array('host' => 'URL', 'user' => 'Username', 'password' => '*Password', 'root' => '&Root', 'secure' => '!Secure ftps://')),
                        'OC_Filestorage_Google' => array('backend' => 'Google Drive', 'configuration' => array('token' => '#token', 'token_secret' => '#token secret'), 'custom' => 'google'),
                        'OC_Filestorage_SWIFT' => array('backend' => 'OpenStack Swift', 'configuration' => array('host' => 'URL', 'user' => 'Username', 'token' => '*Token', 'root' => '&Root', 'secure' => '!Secure ftps://')),
-                       'OC_Filestorage_SMB' => array('backend' => 'SMB', 'configuration' => array('host' => 'URL', 'user' => 'Username', 'password' => '*Password', 'root' => '&Root')),
+                       'OC_Filestorage_SMB' => array('backend' => 'SMB', 'configuration' => array('host' => 'URL', 'user' => 'Username', 'password' => '*Password', 'share' => 'Share', 'root' => '&Root')),
                        'OC_Filestorage_DAV' => array('backend' => 'WebDAV', 'configuration' => array('host' => 'URL', 'user' => 'Username', 'password' => '*Password', 'root' => '&Root', 'secure' => '!Secure https://'))
                );
        }