From 8e208b0eb36765728756b6f127805bb186915b88 Mon Sep 17 00:00:00 2001 From: Daniel Supernault Date: Thu, 3 Oct 2024 21:13:35 -0600 Subject: [PATCH] Update PushGatewayRefresh command --- app/Console/Commands/PushGatewayRefresh.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/Console/Commands/PushGatewayRefresh.php b/app/Console/Commands/PushGatewayRefresh.php index 79672695d..3b839b6af 100644 --- a/app/Console/Commands/PushGatewayRefresh.php +++ b/app/Console/Commands/PushGatewayRefresh.php @@ -3,6 +3,7 @@ namespace App\Console\Commands; use App\Services\NotificationAppGatewayService; +use App\Services\PushNotificationService; use Illuminate\Console\Command; use function Laravel\Prompts\select; @@ -50,6 +51,7 @@ class PushGatewayRefresh extends Command $recheck = NotificationAppGatewayService::forceSupportRecheck(); if ($recheck) { $this->info('Success! Push Notifications are now active!'); + PushNotificationService::warmList('like'); return; } else {