diff options
author | Frederic Guillot <fred@kanboard.net> | 2017-01-14 16:00:58 -0500 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2017-01-14 16:00:58 -0500 |
commit | f5c95f3c9395f2fb7d2df136d6696c0fc26ac607 (patch) | |
tree | 42d88c6b188c2e493a5fb1a5ade2dfe895fa68cd | |
parent | c6b9c726269a0814dfeac9d26c21e77cf41d847e (diff) |
Add task creation event to automatic action that email tasks
-rw-r--r-- | ChangeLog | 1 | ||||
-rw-r--r-- | app/Action/TaskEmail.php | 1 |
2 files changed, 2 insertions, 0 deletions
@@ -20,6 +20,7 @@ Improvements: * Improve link labels pages navigation * Improve settings pages layout * Offer the possibility to define version compatibility from plugins +* Add task creation event to automatic action to send task by email Version 1.0.36 (Dec 30, 2016) ----------------------------- diff --git a/app/Action/TaskEmail.php b/app/Action/TaskEmail.php index fdfe7987..559c2c0b 100644 --- a/app/Action/TaskEmail.php +++ b/app/Action/TaskEmail.php @@ -34,6 +34,7 @@ class TaskEmail extends Base return array( TaskModel::EVENT_MOVE_COLUMN, TaskModel::EVENT_CLOSE, + TaskModel::EVENT_CREATE, ); } |