From 300f22163b1d5ca8bd25f0fa46e7683f57b7bab6 Mon Sep 17 00:00:00 2001 From: Bernhard Posselt Date: Mon, 10 Aug 2015 16:46:00 +0200 Subject: add console command to verify installation --- appinfo/register_command.php | 3 +++ 1 file changed, 3 insertions(+) (limited to 'appinfo/register_command.php') 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); -- cgit v1.2.3