summaryrefslogtreecommitdiff
path: root/app/Template/notification
diff options
context:
space:
mode:
authorFrédéric Guillot <fred@kanboard.net>2019-02-12 20:24:48 -0800
committerFrédéric Guillot <fred@kanboard.net>2019-02-13 18:23:12 -0800
commitb1c5b47d841d5d3c03a904eb7398be84fc73a853 (patch)
treec5a4dcba9ad39b61181df2b444a0c7cfd462beb4 /app/Template/notification
parent029538846181309e9135a17f893e874b2e90f72b (diff)
Add missing webhook event: task.move.project
Fixes #3969
Diffstat (limited to 'app/Template/notification')
-rw-r--r--app/Template/notification/task_move_project.php5
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)) ?>