From: Lukas Reschke Date: Fri, 22 Aug 2014 13:53:23 +0000 (+0200) Subject: Expose setSystemValue X-Git-Tag: v8.0.0alpha1~844^2~1 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=88c3a4a31ae09b4822cff6d6965f0c39becb5b97;p=nextcloud-server.git Expose setSystemValue --- diff --git a/lib/private/allconfig.php b/lib/private/allconfig.php index de3ac973637..eb114546010 100644 --- a/lib/private/allconfig.php +++ b/lib/private/allconfig.php @@ -18,11 +18,10 @@ class AllConfig implements \OCP\IConfig { * * @param string $key the key of the value, under which will be saved * @param mixed $value the value that should be stored - * @todo need a use case for this */ -// public function setSystemValue($key, $value) { -// \OCP\Config::setSystemValue($key, $value); -// } + public function setSystemValue($key, $value) { + \OCP\Config::setSystemValue($key, $value); + } /** * Looks up a system wide defined value diff --git a/lib/public/iconfig.php b/lib/public/iconfig.php index 0ebbd9f5a71..d4a8cdc7381 100644 --- a/lib/public/iconfig.php +++ b/lib/public/iconfig.php @@ -39,9 +39,8 @@ interface IConfig { * * @param string $key the key of the value, under which will be saved * @param mixed $value the value that should be stored - * @todo need a use case for this */ -// public function setSystemValue($key, $value); + public function setSystemValue($key, $value); /** * Looks up a system wide defined value