feat: engagment notifications

This commit is contained in:
2026-05-26 11:55:39 +02:00
parent df94a23a19
commit f716a205ce
13 changed files with 65 additions and 24 deletions
+3 -2
View File
@@ -2,7 +2,7 @@
use Illuminate\Support\Facades\Artisan;
it('schedules expired auth and stale device token cleanup commands', function () {
it('schedules maintenance and engagement commands', function () {
Artisan::call('schedule:list', [
'--json' => true,
]);
@@ -13,5 +13,6 @@ it('schedules expired auth and stale device token cleanup commands', function ()
expect($commands)
->toContain('php artisan sanctum:prune-expired --hours=24')
->toContain('php artisan auth:clear-resets')
->toContain('php artisan device-tokens:prune-stale --days=180');
->toContain('php artisan device-tokens:prune-stale --days=180')
->toContain('php artisan notifications:send-engagement-reminders');
});