if mountpoint is applicable to all users the old API expects a array with 'all'

This commit is contained in:
Bjoern Schiessle 2015-10-02 16:04:04 +02:00
parent c64101ff6e
commit 0ce28a574a

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;