diff options
author | Michael <michaelvickers.uk@gmail.com> | 2018-10-16 01:39:42 +0100 |
---|---|---|
committer | fguillot <fred@kanboard.net> | 2018-10-15 17:39:42 -0700 |
commit | cc81f9d4f5a9857e024829613ad670bc51056be5 (patch) | |
tree | ff27bfd8ce38eb174e1598f90e60077dbeb39466 /app/Subscriber | |
parent | 00228ac12fedaf436869289c7c114dc6f76dd14c (diff) |
Write log entry on file removal
Diffstat (limited to 'app/Subscriber')
-rw-r--r-- | app/Subscriber/NotificationSubscriber.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/app/Subscriber/NotificationSubscriber.php b/app/Subscriber/NotificationSubscriber.php index ad16685b..6db48b46 100644 --- a/app/Subscriber/NotificationSubscriber.php +++ b/app/Subscriber/NotificationSubscriber.php @@ -32,6 +32,7 @@ class NotificationSubscriber extends BaseSubscriber implements EventSubscriberIn CommentModel::EVENT_DELETE => 'handleEvent', CommentModel::EVENT_USER_MENTION => 'handleEvent', TaskFileModel::EVENT_CREATE => 'handleEvent', + TaskFileModel::EVENT_DESTROY => 'handleEvent', TaskLinkModel::EVENT_CREATE_UPDATE => 'handleEvent', TaskLinkModel::EVENT_DELETE => 'handleEvent', ); |