flexisip-account-manager/flexiapi/routes/console.php
Timothée Jaussoin eeeb6baf74 Fix FLEXIAPI-366 Send the voicemails by email
Add a Voicemail UI to listen and delete voicemails in the Admin Account view
2025-12-11 17:20:56 +01:00

8 lines
277 B
PHP

<?php
use App\Console\Commands\Accounts\ClearFiles;
use App\Console\Commands\Accounts\SendVoicemailsEmails;
use Illuminate\Support\Facades\Schedule;
Schedule::command(ClearFiles::class, [7, '--apply'])->daily();
Schedule::command(SendVoicemailsEmails::class)->everyMinute();