From 5a54477128d60ce39b531a6b1920f84d763015c1 Mon Sep 17 00:00:00 2001 From: isaacclad Date: Tue, 23 Jun 2026 19:28:59 +0000 Subject: [PATCH] Deliver hosting resource limit alerts in-app only. Stop emailing users when their servers hit usage limits; keep database notifications for the in-app bell. Co-authored-by: Cursor --- app/Notifications/HostingResourceWarningNotification.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Notifications/HostingResourceWarningNotification.php b/app/Notifications/HostingResourceWarningNotification.php index ba80d04..d61e647 100644 --- a/app/Notifications/HostingResourceWarningNotification.php +++ b/app/Notifications/HostingResourceWarningNotification.php @@ -21,7 +21,7 @@ class HostingResourceWarningNotification extends Notification implements ShouldQ public function via($notifiable): array { - return ['mail', 'database']; + return ['database']; } public function toMail($notifiable): MailMessage