summaryrefslogtreecommitdiffstats
path: root/apps/files_external
diff options
context:
space:
mode:
authorVincent Petry <pvince81@owncloud.com>2016-06-22 15:53:20 +0200
committerGitHub <noreply@github.com>2016-06-22 15:53:20 +0200
commitd5f432884278ad67ef0420a2cbb9ba29307bb56a (patch)
tree3b18364a0ce6472a2a5e0241f05ff03211677456 /apps/files_external
parent963d8a85656555cf46a5d1fcb139b59088fb0b35 (diff)
parenteed1c52aec1d06f541f0d86aa2650c6f9c1fa1ae (diff)
downloadnextcloud-server-d5f432884278ad67ef0420a2cbb9ba29307bb56a.tar.gz
nextcloud-server-d5f432884278ad67ef0420a2cbb9ba29307bb56a.zip
Merge pull request #25223 from owncloud/external-list-default-options
Hide more default options in occ files_external:list
Diffstat (limited to 'apps/files_external')
-rw-r--r--apps/files_external/lib/Command/ListCommand.php4
1 files changed, 3 insertions, 1 deletions
diff --git a/apps/files_external/lib/Command/ListCommand.php b/apps/files_external/lib/Command/ListCommand.php
index 26133ea5ed5..bb43db17a8a 100644
--- a/apps/files_external/lib/Command/ListCommand.php
+++ b/apps/files_external/lib/Command/ListCommand.php
@@ -167,7 +167,9 @@ class ListCommand extends Base {
$defaultMountOptions = [
'encrypt' => true,
'previews' => true,
- 'filesystem_check_changes' => 1
+ 'filesystem_check_changes' => 1,
+ 'enable_sharing' => false,
+ 'encoding_compatibility' => false
];
$rows = array_map(function (StorageConfig $config) use ($userId, $defaultMountOptions, $full) {
$storageConfig = $config->getBackendOptions();