arcos-backend/routes/console.php
2026-01-12 15:58:15 -06:00

16 lines
394 B
PHP

<?php
use App\Schedules\DeleteResetPasswords;
use Illuminate\Support\Facades\Schedule;
if(config('telescope.enabled') == 'true') {
Schedule::command('telescope:prune')->daily();
}
Schedule::call(new DeleteResetPasswords)->hourly();
// Limpiar detecciones diarias a las 00:00
Schedule::command('detecciones:limpiar')
->dailyAt('00:00')
->timezone(config('app.timezone', 'UTC'));