diff options
author | Frédéric Guillot <fred@kanboard.net> | 2019-02-12 20:24:48 -0800 |
---|---|---|
committer | Frédéric Guillot <fred@kanboard.net> | 2019-02-13 18:23:12 -0800 |
commit | b1c5b47d841d5d3c03a904eb7398be84fc73a853 (patch) | |
tree | c5a4dcba9ad39b61181df2b444a0c7cfd462beb4 /app/Template | |
parent | 029538846181309e9135a17f893e874b2e90f72b (diff) |
Add missing webhook event: task.move.project
Fixes #3969
Diffstat (limited to 'app/Template')
-rw-r--r-- | app/Template/notification/task_move_project.php | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/app/Template/notification/task_move_project.php b/app/Template/notification/task_move_project.php new file mode 100644 index 00000000..64037bd6 --- /dev/null +++ b/app/Template/notification/task_move_project.php @@ -0,0 +1,5 @@ +<h2><?= $this->text->e($task['title']) ?> (#<?= $task['id'] ?>)</h2> + +<p><?= t('Task #%d "%s" has been moved to the project "%s"', $task['id'], $task['title'], $task['project_name']) ?></p> + +<?= $this->render('notification/footer', array('task' => $task)) ?> |