Rename warnings to notifications

This commit is contained in:
James Cole 2025-01-25 04:49:08 +01:00
parent 663202bfc6
commit 0986bfbc34
No known key found for this signature in database
GPG Key ID: B49A324B7EAD6D80

View File

@ -52,8 +52,8 @@ class CronController extends Controller
if (true === config('cer.download_enabled')) {
$return['exchange_rates'] = $this->exchangeRatesCronJob($config['force'], $config['date']);
}
$return['bill_warnings'] = $this->billWarningCronJob($config['force'], $config['date']);
$return['bill_notifications'] = $this->billWarningCronJob($config['force'], $config['date']);
return response()->json($return);
return response()->api($return);
}
}