feat: automate guest notification triggers
This commit is contained in:
@@ -29,6 +29,7 @@ return Application::configure(basePath: dirname(__DIR__))
|
||||
\App\Console\Commands\CheckUploadQueuesCommand::class,
|
||||
\App\Console\Commands\PurgeExpiredDataExports::class,
|
||||
\App\Console\Commands\ProcessTenantRetention::class,
|
||||
\App\Console\Commands\SendGuestFeedbackReminders::class,
|
||||
])
|
||||
->withSchedule(function (\Illuminate\Console\Scheduling\Schedule $schedule) {
|
||||
$schedule->command('package:check-status')->dailyAt('06:00');
|
||||
@@ -36,6 +37,7 @@ return Application::configure(basePath: dirname(__DIR__))
|
||||
$schedule->command('photobooth:ingest')->everyFiveMinutes()->withoutOverlapping();
|
||||
$schedule->command('exports:purge')->dailyAt('02:00');
|
||||
$schedule->command('tenants:retention-scan')->dailyAt('03:00');
|
||||
$schedule->command('guest:feedback-reminders')->dailyAt('22:00');
|
||||
})
|
||||
->withMiddleware(function (Middleware $middleware) {
|
||||
$middleware->alias([
|
||||
|
||||
Reference in New Issue
Block a user