diff options
author | Frederic Guillot <fred@kanboard.net> | 2015-07-06 21:34:57 -0400 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2015-07-06 21:34:57 -0400 |
commit | 08259d4f206438095308749b8cc2abbe629137da (patch) | |
tree | db535ab6fdb7375a33444f3d796bb725469c36ef /app/Subscriber | |
parent | 663a1c20e6ba0fbf65afcb43f0f48d34f21dcb53 (diff) |
Add lead and cycle time for projects
Diffstat (limited to 'app/Subscriber')
-rw-r--r-- | app/Subscriber/ProjectDailySummarySubscriber.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/app/Subscriber/ProjectDailySummarySubscriber.php b/app/Subscriber/ProjectDailySummarySubscriber.php index 9e4f15b0..db180dea 100644 --- a/app/Subscriber/ProjectDailySummarySubscriber.php +++ b/app/Subscriber/ProjectDailySummarySubscriber.php @@ -22,7 +22,8 @@ class ProjectDailySummarySubscriber extends \Core\Base implements EventSubscribe public function execute(TaskEvent $event) { if (isset($event['project_id'])) { - $this->projectDailySummary->updateTotals($event['project_id'], date('Y-m-d')); + $this->projectDailyColumnStats->updateTotals($event['project_id'], date('Y-m-d')); + $this->projectDailyStats->updateTotals($event['project_id'], date('Y-m-d')); } } } |