Merge pull request #21663 from owncloud/occ-external-mountpoint

allow setting mountpoint with occ files_external:config
remotes/origin/app-styles-content-list
Thomas Müller 11 years ago
commit a11f6093b7
  1. 12
      apps/files_external/command/config.php

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

Loading…
Cancel
Save