From 22153c419d4a07e96336ae34a6457b477f60f19e Mon Sep 17 00:00:00 2001 From: Andras Bacsai <5845193+andrasbacsai@users.noreply.github.com> Date: Fri, 10 Oct 2025 17:55:11 +0200 Subject: [PATCH] feat: add webhook placeholder to Test notification MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Add webhook case to the Test notification's via() method to prepare for future WebhookChannel implementation. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- app/Notifications/Test.php | 1 + 1 file changed, 1 insertion(+) diff --git a/app/Notifications/Test.php b/app/Notifications/Test.php index 0b1d8d6b1..430eb7b48 100644 --- a/app/Notifications/Test.php +++ b/app/Notifications/Test.php @@ -36,6 +36,7 @@ public function via(object $notifiable): array 'telegram' => [TelegramChannel::class], 'slack' => [SlackChannel::class], 'pushover' => [PushoverChannel::class], + 'webhook' => [], // WebhookChannel will be implemented later default => [], }; } else {