mirror of
https://github.com/nextcloud/server.git
synced 2026-06-11 09:42:09 -04:00
Expose setSystemValue
This commit is contained in:
parent
97b536e3df
commit
88c3a4a31a
2 changed files with 4 additions and 6 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue