Skip to content
Snippets Groups Projects
Commit 88c3a4a3 authored by Lukas Reschke's avatar Lukas Reschke
Browse files

Expose setSystemValue

parent 97b536e3
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment