fix(notification): always send SSL notifications

This commit is contained in:
peaklabs-dev
2025-02-11 20:55:33 +01:00
parent d74c578a4a
commit f288852753

View File

@@ -4,9 +4,9 @@ namespace App\Traits;
use App\Notifications\Channels\DiscordChannel; use App\Notifications\Channels\DiscordChannel;
use App\Notifications\Channels\EmailChannel; use App\Notifications\Channels\EmailChannel;
use App\Notifications\Channels\PushoverChannel;
use App\Notifications\Channels\SlackChannel; use App\Notifications\Channels\SlackChannel;
use App\Notifications\Channels\TelegramChannel; use App\Notifications\Channels\TelegramChannel;
use App\Notifications\Channels\PushoverChannel;
use Illuminate\Database\Eloquent\Model; use Illuminate\Database\Eloquent\Model;
trait HasNotificationSettings trait HasNotificationSettings
@@ -16,6 +16,7 @@ trait HasNotificationSettings
'server_force_disabled', 'server_force_disabled',
'general', 'general',
'test', 'test',
'ssl_certificate_renewal',
]; ];
/** /**