Merge pull request #19534 from owncloud/fix_19532

if the mountpoint is accessible for all user the array should contain 'all'
This commit is contained in:
Thomas Müller 2015-10-02 18:40:50 +02:00
commit 94013ffb82
1 changed files with 5 additions and 0 deletions

View File

@ -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;