Deploy Ladill Meet / deploy (push) Successful in 52s
Capture stage spotlight video for browser recordings, fail incomplete uploads, allow post-session host uploads, and expire stale processing recordings automatically. Co-authored-by: Cursor <cursoragent@cursor.com>
8 lines
279 B
PHP
8 lines
279 B
PHP
<?php
|
|
|
|
use Illuminate\Support\Facades\Schedule;
|
|
|
|
Schedule::command('meet:send-reminders')->everyFiveMinutes();
|
|
Schedule::command('meet:process-billing')->daily()->withoutOverlapping();
|
|
Schedule::command('meet:fail-stale-recordings')->everyFifteenMinutes()->withoutOverlapping();
|