Add task creation event to automatic action that email tasks

This commit is contained in:
Frederic Guillot
2017-01-14 16:00:58 -05:00
parent c6b9c72626
commit f5c95f3c93
2 changed files with 2 additions and 0 deletions

View File

@@ -20,6 +20,7 @@ Improvements:
* Improve link labels pages navigation * Improve link labels pages navigation
* Improve settings pages layout * Improve settings pages layout
* Offer the possibility to define version compatibility from plugins * 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) Version 1.0.36 (Dec 30, 2016)
----------------------------- -----------------------------

View File

@@ -34,6 +34,7 @@ class TaskEmail extends Base
return array( return array(
TaskModel::EVENT_MOVE_COLUMN, TaskModel::EVENT_MOVE_COLUMN,
TaskModel::EVENT_CLOSE, TaskModel::EVENT_CLOSE,
TaskModel::EVENT_CREATE,
); );
} }