summaryrefslogtreecommitdiff
path: root/app/ServiceProvider/CommandProvider.php
diff options
context:
space:
mode:
Diffstat (limited to 'app/ServiceProvider/CommandProvider.php')
-rw-r--r--app/ServiceProvider/CommandProvider.php2
1 files changed, 2 insertions, 0 deletions
diff --git a/app/ServiceProvider/CommandProvider.php b/app/ServiceProvider/CommandProvider.php
index 77c8b395..f08f76cc 100644
--- a/app/ServiceProvider/CommandProvider.php
+++ b/app/ServiceProvider/CommandProvider.php
@@ -25,6 +25,7 @@ use Kanboard\Console\TransitionExportCommand;
use Kanboard\Console\VersionCommand;
use Kanboard\Console\WorkerCommand;
use Kanboard\Console\CssCommand;
+use Kanboard\Console\JsCommand;
use Pimple\Container;
use Pimple\ServiceProviderInterface;
use Symfony\Component\Console\Application;
@@ -69,6 +70,7 @@ class CommandProvider implements ServiceProviderInterface
$application->add(new DatabaseVersionCommand($container));
$application->add(new VersionCommand($container));
$application->add(new CssCommand($container));
+ $application->add(new JsCommand($container));
$container['cli'] = $application;
return $container;