diff options
author | Vincent Petry <pvince81@owncloud.com> | 2016-02-23 15:16:13 +0100 |
---|---|---|
committer | Vincent Petry <pvince81@owncloud.com> | 2016-02-24 13:58:21 +0100 |
commit | 4829a2d421902e0edede30a71c96a86c576a17b1 (patch) | |
tree | 4fe9dc440688ac6c2160850e7d8f0d46dc77daf4 /apps/files_external/tests | |
parent | fae6643e6dd4bc308170e0ab45886f110f60a639 (diff) | |
download | nextcloud-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.js | 2 |
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 }); }); |