2016-03-25 01:18:05 -07:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Console;
|
|
|
|
|
|
|
|
use Illuminate\Console\Scheduling\Schedule;
|
|
|
|
use Illuminate\Foundation\Console\Kernel as ConsoleKernel;
|
|
|
|
|
|
|
|
class Kernel extends ConsoleKernel
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* The Artisan commands provided by your application.
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
protected $commands = [
|
|
|
|
Commands\PaveIt::class,
|
|
|
|
Commands\CreateAdmin::class,
|
|
|
|
Commands\SendExpirationAlerts::class,
|
|
|
|
Commands\SendInventoryAlerts::class,
|
2017-08-31 21:18:05 -07:00
|
|
|
Commands\SendExpectedCheckinAlerts::class,
|
2016-05-17 19:25:17 -07:00
|
|
|
Commands\ObjectImportCommand::class,
|
2017-11-21 19:01:47 -08:00
|
|
|
Commands\Version::class,
|
2016-03-25 01:18:05 -07:00
|
|
|
Commands\SystemBackup::class,
|
2016-04-14 11:59:01 -07:00
|
|
|
Commands\DisableLDAP::class,
|
2016-04-19 00:47:32 -07:00
|
|
|
Commands\Purge::class,
|
2016-10-31 20:59:46 -07:00
|
|
|
Commands\LdapSync::class,
|
2017-08-21 22:30:56 -07:00
|
|
|
Commands\FixDoubleEscape::class,
|
2017-10-06 22:58:00 -07:00
|
|
|
Commands\RecryptFromMcrypt::class,
|
2017-11-03 19:00:36 -07:00
|
|
|
Commands\ResetDemoSettings::class,
|
|
|
|
Commands\SyncAssetLocations::class,
|
2017-11-24 11:25:51 -08:00
|
|
|
Commands\RegenerateAssetTags::class,
|
2018-05-16 19:20:43 -07:00
|
|
|
Commands\SyncAssetCounters::class,
|
2018-07-27 02:42:55 -07:00
|
|
|
Commands\RestoreDeletedUsers::class,
|
2016-03-25 01:18:05 -07:00
|
|
|
];
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Define the application's command schedule.
|
|
|
|
*
|
|
|
|
* @param \Illuminate\Console\Scheduling\Schedule $schedule
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
protected function schedule(Schedule $schedule)
|
|
|
|
{
|
|
|
|
|
2016-04-19 04:36:36 -07:00
|
|
|
$schedule->command('snipeit:inventory-alerts')->daily();
|
|
|
|
$schedule->command('snipeit:expiring-alerts')->daily();
|
2017-10-16 05:01:15 -07:00
|
|
|
$schedule->command('snipeit:expected-checkin')->daily();
|
2016-03-25 01:18:05 -07:00
|
|
|
$schedule->command('snipeit:backup')->weekly();
|
2016-05-12 16:54:07 -07:00
|
|
|
$schedule->command('backup:clean')->daily();
|
2016-03-25 01:18:05 -07:00
|
|
|
}
|
2016-12-19 11:04:28 -08:00
|
|
|
|
|
|
|
protected function commands()
|
|
|
|
{
|
|
|
|
require base_path('routes/console.php');
|
|
|
|
}
|
2016-03-25 01:18:05 -07:00
|
|
|
}
|