summaryrefslogtreecommitdiff
path: root/app/Subscriber/ProjectDailySummarySubscriber.php
diff options
context:
space:
mode:
authorFrederic Guillot <fred@kanboard.net>2015-04-11 23:01:17 -0400
committerFrederic Guillot <fred@kanboard.net>2015-04-11 23:01:17 -0400
commit9ca2ba21272ddb1958e0b5b2f5842cde42508139 (patch)
treec6db297008d728a44040af5804386802b457219e /app/Subscriber/ProjectDailySummarySubscriber.php
parent7df055aff1e1056d87bb720531d60cb079805f94 (diff)
Add burndown chart
Diffstat (limited to 'app/Subscriber/ProjectDailySummarySubscriber.php')
-rw-r--r--app/Subscriber/ProjectDailySummarySubscriber.php1
1 files changed, 1 insertions, 0 deletions
diff --git a/app/Subscriber/ProjectDailySummarySubscriber.php b/app/Subscriber/ProjectDailySummarySubscriber.php
index 6d737734..f865c036 100644
--- a/app/Subscriber/ProjectDailySummarySubscriber.php
+++ b/app/Subscriber/ProjectDailySummarySubscriber.php
@@ -12,6 +12,7 @@ class ProjectDailySummarySubscriber extends Base implements EventSubscriberInter
{
return array(
Task::EVENT_CREATE => array('execute', 0),
+ Task::EVENT_UPDATE => array('execute', 0),
Task::EVENT_CLOSE => array('execute', 0),
Task::EVENT_OPEN => array('execute', 0),
Task::EVENT_MOVE_COLUMN => array('execute', 0),