diff options
author | Joas Schilling <nickvergessen@owncloud.com> | 2015-04-30 15:48:31 +0200 |
---|---|---|
committer | Joas Schilling <nickvergessen@owncloud.com> | 2015-07-07 11:18:24 +0200 |
commit | 6fb3a8d5f5a290208b116fa0b589d9b7d691bdd7 (patch) | |
tree | c171f5cf1410260f7b0c6066b18a26bfd68654c3 /lib/private/systemconfig.php | |
parent | 6ed8ba0ce9f1d4ac68d6a2e53f4e0845ef8abcc5 (diff) | |
download | nextcloud-server-6fb3a8d5f5a290208b116fa0b589d9b7d691bdd7.tar.gz nextcloud-server-6fb3a8d5f5a290208b116fa0b589d9b7d691bdd7.zip |
Add missing tunnel on new class
Diffstat (limited to 'lib/private/systemconfig.php')
-rw-r--r-- | lib/private/systemconfig.php | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/lib/private/systemconfig.php b/lib/private/systemconfig.php index 451ccd85e2f..13b0959768a 100644 --- a/lib/private/systemconfig.php +++ b/lib/private/systemconfig.php @@ -29,6 +29,14 @@ namespace OC; */ class SystemConfig { /** + * Lists all available config keys + * @return array an array of key names + */ + public function getKeys() { + return \OC_Config::getKeys(); + } + + /** * Sets a new system wide value * * @param string $key the key of the value, under which will be saved |