diff options
author | Robin Appelman <icewind@owncloud.com> | 2016-06-22 13:34:55 +0200 |
---|---|---|
committer | Robin Appelman <icewind@owncloud.com> | 2016-06-22 13:34:55 +0200 |
commit | eed1c52aec1d06f541f0d86aa2650c6f9c1fa1ae (patch) | |
tree | 804b700432ef7f0d56a8ef30a7ae89fdbf112bf5 /apps/files_external | |
parent | f2f1eab7f4ade9abb77f70c6a5c3244b5c6153f4 (diff) | |
download | nextcloud-server-eed1c52aec1d06f541f0d86aa2650c6f9c1fa1ae.tar.gz nextcloud-server-eed1c52aec1d06f541f0d86aa2650c6f9c1fa1ae.zip |
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(); |