Browse Source

Merge pull request #19534 from owncloud/fix_19532

if the mountpoint is accessible for all user the array should contain 'all'
remotes/origin/certificate-external-storage-visibility
Thomas Müller 11 years ago
parent
commit
94013ffb82
  1. 5
      apps/files_external/lib/config.php

5
apps/files_external/lib/config.php

@ -207,6 +207,11 @@ class OC_Mount_Config {
'groups' => $storage->getApplicableGroups(),
'users' => $storage->getApplicableUsers(),
];
// if mountpoint is applicable to all users the old API expects ['all']
if (empty($mountEntry['applicable']['groups']) && empty($mountEntry['applicable']['users'])) {
$mountEntry['applicable']['users'] = ['all'];
}
$mountEntry['id'] = $storage->getId();
return $mountEntry;

Loading…
Cancel
Save