diff options
author | Vincent Petry <pvince81@owncloud.com> | 2016-06-22 15:53:20 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-06-22 15:53:20 +0200 |
commit | d5f432884278ad67ef0420a2cbb9ba29307bb56a (patch) | |
tree | 3b18364a0ce6472a2a5e0241f05ff03211677456 /apps/files_external | |
parent | 963d8a85656555cf46a5d1fcb139b59088fb0b35 (diff) | |
parent | eed1c52aec1d06f541f0d86aa2650c6f9c1fa1ae (diff) | |
download | nextcloud-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.php | 4 |
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(); |