Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsualko <klaus@jsxc.org>2017-07-07 09:33:31 +0300
committersualko <klaus@jsxc.org>2017-07-26 15:35:42 +0300
commit3e62a2515593e12505af6ab5f9dbee8f2c2b7802 (patch)
tree6ae12bccdbd62754af8bd63ea76e25a15930e109 /core/register_command.php
parentda31a30edbdd7b5525852e9b3f8fea3e37384242 (diff)
add occ app:install command
Signed-off-by: Klaus Herberth <klaus@jsxc.org>
Diffstat (limited to 'core/register_command.php')
-rw-r--r--core/register_command.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/core/register_command.php b/core/register_command.php
index fd693729a72..02bdbedc6e0 100644
--- a/core/register_command.php
+++ b/core/register_command.php
@@ -59,9 +59,10 @@ $application->add(new \OC\Core\Command\Integrity\CheckCore(
if (\OC::$server->getConfig()->getSystemValue('installed', false)) {
$application->add(new OC\Core\Command\App\Disable(\OC::$server->getAppManager()));
$application->add(new OC\Core\Command\App\Enable(\OC::$server->getAppManager()));
+ $application->add(new OC\Core\Command\App\Install());
$application->add(new OC\Core\Command\App\GetPath());
$application->add(new OC\Core\Command\App\ListApps(\OC::$server->getAppManager()));
-
+
$application->add(new OC\Core\Command\TwoFactorAuth\Enable(
\OC::$server->getTwoFactorAuthManager(), \OC::$server->getUserManager()
));