summaryrefslogtreecommitdiffstats
path: root/appinfo/register_command.php
diff options
context:
space:
mode:
Diffstat (limited to 'appinfo/register_command.php')
-rw-r--r--appinfo/register_command.php3
1 files changed, 3 insertions, 0 deletions
diff --git a/appinfo/register_command.php b/appinfo/register_command.php
index 09b77911c..dc6b4fe31 100644
--- a/appinfo/register_command.php
+++ b/appinfo/register_command.php
@@ -10,9 +10,12 @@
*/
use OCA\News\Command\GenerateSearchIndices;
+use OCA\News\Command\VerifyInstall;
$newsApp = new OCA\News\AppInfo\Application();
$newsContainer = $newsApp->getContainer();
$newsCmd = $newsContainer->query(GenerateSearchIndices::class);
+$verifyCmd = $newsContainer->query(VerifyInstall::class);
$application->add($newsCmd);
+$application->add($verifyCmd);