allow setting mountpoint with occ files_external:config

This commit is contained in:
Robin Appelman 2016-01-12 17:34:22 +01:00
parent eac5d9fb3a
commit 1861dda313
1 changed files with 10 additions and 2 deletions

View File

@ -88,7 +88,11 @@ class Config extends Base {
* @param OutputInterface $output
*/
protected function getOption(StorageConfig $mount, $key, OutputInterface $output) {
$value = $mount->getBackendOption($key);
if ($key === 'mountpoint' || $key === 'mount_point') {
$value = $mount->getMountPoint();
} else {
$value = $mount->getBackendOption($key);
}
if (!is_string($value)) { // show bools and objects correctly
$value = json_encode($value);
}
@ -106,7 +110,11 @@ class Config extends Base {
if (!is_null($decoded)) {
$value = $decoded;
}
$mount->setBackendOption($key, $value);
if ($key === 'mountpoint' || $key === 'mount_point') {
$mount->setMountPoint($value);
} else {
$mount->setBackendOption($key, $value);
}
$this->globalService->updateStorage($mount);
}
}