Added internal task links to activity stream
This commit is contained in:
@@ -8,6 +8,7 @@ use Kanboard\Job\ProjectFileEventJob;
|
||||
use Kanboard\Job\SubtaskEventJob;
|
||||
use Kanboard\Job\TaskEventJob;
|
||||
use Kanboard\Job\TaskFileEventJob;
|
||||
use Kanboard\Job\TaskLinkEventJob;
|
||||
use Pimple\Container;
|
||||
use Pimple\ServiceProviderInterface;
|
||||
|
||||
@@ -44,6 +45,10 @@ class JobProvider implements ServiceProviderInterface
|
||||
return new TaskFileEventJob($c);
|
||||
});
|
||||
|
||||
$container['taskLinkEventJob'] = $container->factory(function ($c) {
|
||||
return new TaskLinkEventJob($c);
|
||||
});
|
||||
|
||||
$container['projectFileEventJob'] = $container->factory(function ($c) {
|
||||
return new ProjectFileEventJob($c);
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user