summaryrefslogtreecommitdiffstats
path: root/appinfo
diff options
context:
space:
mode:
authorSean Molenaar <SMillerDev@users.noreply.github.com>2019-03-06 13:10:37 +0100
committerBenjamin Brahmer <info@b-brahmer.de>2019-03-06 13:10:37 +0100
commit71ba5a3ad1a1c9d867af68e72a4a19acd9ffe08d (patch)
treedebd3e30226df8def9e8f0bb30136c91db84184f /appinfo
parent6a4e56e7274d85bcbd0e2dcde7a61d8f7a4397ec (diff)
Fix generation commands and make them available in ./occ (#402)
Diffstat (limited to 'appinfo')
-rw-r--r--appinfo/register_command.php2
1 files changed, 2 insertions, 0 deletions
diff --git a/appinfo/register_command.php b/appinfo/register_command.php
index 723733bf5..3ce99b2a1 100644
--- a/appinfo/register_command.php
+++ b/appinfo/register_command.php
@@ -15,6 +15,7 @@ use OCA\News\Command\Updater\UpdateFeed;
use OCA\News\Command\Updater\AllFeeds;
use OCA\News\Command\Updater\BeforeUpdate;
use OCA\News\Command\Updater\AfterUpdate;
+use OCA\News\Command\ExploreGenerator;
$app = new Application();
$container = $app->getContainer();
@@ -22,3 +23,4 @@ $application->add($container->query(AllFeeds::class));
$application->add($container->query(UpdateFeed::class));
$application->add($container->query(BeforeUpdate::class));
$application->add($container->query(AfterUpdate::class));
+$application->add($container->query(ExploreGenerator::class));