diff options
author | sualko <klaus@jsxc.org> | 2017-07-07 08:33:31 +0200 |
---|---|---|
committer | sualko <klaus@jsxc.org> | 2017-07-26 14:35:42 +0200 |
commit | 3e62a2515593e12505af6ab5f9dbee8f2c2b7802 (patch) | |
tree | 6ae12bccdbd62754af8bd63ea76e25a15930e109 /core/register_command.php | |
parent | da31a30edbdd7b5525852e9b3f8fea3e37384242 (diff) | |
download | nextcloud-server-3e62a2515593e12505af6ab5f9dbee8f2c2b7802.tar.gz nextcloud-server-3e62a2515593e12505af6ab5f9dbee8f2c2b7802.zip |
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.php | 3 |
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() )); |