summaryrefslogtreecommitdiffstats
path: root/apps/files_external/tests
diff options
context:
space:
mode:
authorVincent Petry <pvince81@owncloud.com>2016-02-23 15:16:13 +0100
committerVincent Petry <pvince81@owncloud.com>2016-02-24 13:58:21 +0100
commit4829a2d421902e0edede30a71c96a86c576a17b1 (patch)
tree4fe9dc440688ac6c2160850e7d8f0d46dc77daf4 /apps/files_external/tests
parentfae6643e6dd4bc308170e0ab45886f110f60a639 (diff)
downloadnextcloud-server-4829a2d421902e0edede30a71c96a86c576a17b1.tar.gz
nextcloud-server-4829a2d421902e0edede30a71c96a86c576a17b1.zip
Disable sharing by default for external storage mounts
This is for newly created mount points. Migrated mount points will have sharing enabled as before.
Diffstat (limited to 'apps/files_external/tests')
-rw-r--r--apps/files_external/tests/js/settingsSpec.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files_external/tests/js/settingsSpec.js b/apps/files_external/tests/js/settingsSpec.js
index 6f5bb2a8e3e..2a7afd6c2fa 100644
--- a/apps/files_external/tests/js/settingsSpec.js
+++ b/apps/files_external/tests/js/settingsSpec.js
@@ -363,7 +363,7 @@ describe('OCA.External.Settings tests', function() {
expect(JSON.parse($tr.find('input.mountOptions').val())).toEqual({
encrypt: true,
previews: true,
- enable_sharing: true,
+ enable_sharing: false,
filesystem_check_changes: 0
});
});