summaryrefslogtreecommitdiffstats
path: root/appinfo/register_command.php
diff options
context:
space:
mode:
authorBernhard Posselt <dev@bernhard-posselt.com>2015-11-26 19:51:29 +0100
committerBernhard Posselt <dev@bernhard-posselt.com>2015-11-26 19:51:49 +0100
commit6f48a74ead80c57e291ca2be78645449e99ae5f0 (patch)
tree783d228246b38fe135f772461958d00f56900ac0 /appinfo/register_command.php
parent050ca4af5a2c72ecd31305ed7b91afc4f411efa1 (diff)
add autoupdate for indices
Diffstat (limited to 'appinfo/register_command.php')
-rw-r--r--appinfo/register_command.php21
1 files changed, 0 insertions, 21 deletions
diff --git a/appinfo/register_command.php b/appinfo/register_command.php
deleted file mode 100644
index 91e379525..000000000
--- a/appinfo/register_command.php
+++ /dev/null
@@ -1,21 +0,0 @@
-<?php
-/**
- * ownCloud - News
- *
- * This file is licensed under the Affero General Public License version 3 or
- * later. See the COPYING file.
- *
- * @author Bernhard Posselt <dev@bernhard-posselt.com>
- * @copyright Bernhard Posselt 2015
- */
-
-use OCA\News\Command\Migrate;
-use OCA\News\Command\VerifyInstall;
-
-$newsApp = new OCA\News\AppInfo\Application();
-$newsContainer = $newsApp->getContainer();
-$newsCmd = $newsContainer->query(Migrate::class);
-$verifyCmd = $newsContainer->query(VerifyInstall::class);
-
-$application->add($newsCmd);
-$application->add($verifyCmd);