diff options
author | Joas Schilling <nickvergessen@owncloud.com> | 2015-05-08 17:13:46 +0200 |
---|---|---|
committer | Joas Schilling <nickvergessen@owncloud.com> | 2015-07-07 11:18:25 +0200 |
commit | 3608c1007e67d05f3721f2693eda51cefecce762 (patch) | |
tree | 108683d508f44867d9c5e2187e4c65a2ef201a3b /core/register_command.php | |
parent | a83eac3762fff010e154e2f80cb4f0bd716d8d43 (diff) | |
download | nextcloud-server-3608c1007e67d05f3721f2693eda51cefecce762.tar.gz nextcloud-server-3608c1007e67d05f3721f2693eda51cefecce762.zip |
Add a command to get a config value
Diffstat (limited to 'core/register_command.php')
-rw-r--r-- | core/register_command.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/core/register_command.php b/core/register_command.php index f3c0a375c5b..75bd5d8e53e 100644 --- a/core/register_command.php +++ b/core/register_command.php @@ -41,6 +41,7 @@ if (\OC::$server->getConfig()->getSystemValue('installed', false)) { $application->add(new OC\Core\Command\Background\Ajax(\OC::$server->getConfig())); $application->add(new OC\Core\Command\Config\ListConfigs(\OC::$server->getSystemConfig(), \OC::$server->getAppConfig())); + $application->add(new OC\Core\Command\Config\System\GetConfig(\OC::$server->getSystemConfig())); $application->add(new OC\Core\Command\Config\System\SetConfig(\OC::$server->getSystemConfig())); $application->add(new OC\Core\Command\Db\GenerateChangeScript()); |