diff options
author | Patrik Kernstock <info@pkern.at> | 2018-10-05 03:08:03 +0200 |
---|---|---|
committer | Patrik Kernstock <info@pkern.at> | 2018-10-05 03:08:03 +0200 |
commit | d9469a6b72187560601cc209528be9bc5793df35 (patch) | |
tree | 9df07bcc38df1ff55c752b0ef15ab952df7ec340 /core/register_command.php | |
parent | fbe62e198594fcb130884e7e98f669ff4516b90b (diff) | |
download | nextcloud-server-d9469a6b72187560601cc209528be9bc5793df35.tar.gz nextcloud-server-d9469a6b72187560601cc209528be9bc5793df35.zip |
Add occ app:remove CLI command
Signed-off-by: Patrik Kernstock <info@pkern.at>
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 af8d9977c7f..0e53cd20df1 100644 --- a/core/register_command.php +++ b/core/register_command.php @@ -65,6 +65,7 @@ if (\OC::$server->getConfig()->getSystemValue('installed', false)) { $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\App\Remove()); $application->add(\OC::$server->query(\OC\Core\Command\TwoFactorAuth\Cleanup::class)); $application->add(\OC::$server->query(\OC\Core\Command\TwoFactorAuth\Enforce::class)); |