From ab3b9c45106fb68522f3832863f6e16c8f4856f7 Mon Sep 17 00:00:00 2001 From: Godfrey M Date: Wed, 23 Oct 2024 16:24:01 -0700 Subject: [PATCH] remove unnecessary code from checkinasset notification --- app/Notifications/CheckinAssetNotification.php | 8 -------- 1 file changed, 8 deletions(-) diff --git a/app/Notifications/CheckinAssetNotification.php b/app/Notifications/CheckinAssetNotification.php index 5c38982ab6..6f95437334 100644 --- a/app/Notifications/CheckinAssetNotification.php +++ b/app/Notifications/CheckinAssetNotification.php @@ -64,14 +64,6 @@ class CheckinAssetNotification extends Notification $notifyBy[] = 'slack'; } -// /** -// * Only send checkin notifications to users if the category -// * has the corresponding checkbox checked. -// */ -// if ($this->item->checkin_email() && $this->target instanceof User && $this->target->email != '') { -// $notifyBy[] = 'mail'; -// } - return $notifyBy; }