mirror of
https://github.com/snipe/snipe-it.git
synced 2024-12-24 05:04:07 -08:00
407445456a
# Conflicts: # app/Console/Commands/LdapSync.php # app/Console/Kernel.php # app/Http/Controllers/Auth/LoginController.php # app/Http/Controllers/LicensesController.php # composer.json # composer.lock # config/version.php # resources/views/auth/two_factor_enroll.blade.php
65 lines
2 KiB
PHP
65 lines
2 KiB
PHP
<?php
|
|
|
|
namespace App\Console;
|
|
|
|
use App\Console\Commands\RestoreDeletedUsers;
|
|
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,
|
|
Commands\SendExpectedCheckinAlerts::class,
|
|
Commands\ObjectImportCommand::class,
|
|
Commands\Version::class,
|
|
Commands\SystemBackup::class,
|
|
Commands\DisableLDAP::class,
|
|
Commands\Purge::class,
|
|
Commands\LdapSync::class,
|
|
Commands\FixDoubleEscape::class,
|
|
Commands\RecryptFromMcrypt::class,
|
|
Commands\ResetDemoSettings::class,
|
|
Commands\SyncAssetLocations::class,
|
|
Commands\RegenerateAssetTags::class,
|
|
Commands\SyncAssetCounters::class,
|
|
Commands\RestoreDeletedUsers::class,
|
|
Commands\SendCurrentInventoryToUsers::class,
|
|
Commands\MoveUploadsToNewDisk::class,
|
|
Commands\SendUpcomingAuditReport::class,
|
|
];
|
|
|
|
/**
|
|
* Define the application's command schedule.
|
|
*
|
|
* @param \Illuminate\Console\Scheduling\Schedule $schedule
|
|
* @return void
|
|
*/
|
|
protected function schedule(Schedule $schedule)
|
|
{
|
|
$schedule->command('snipeit:inventory-alerts')->daily();
|
|
$schedule->command('snipeit:expiring-alerts')->daily();
|
|
$schedule->command('snipeit:expected-checkin')->daily();
|
|
$schedule->command('snipeit:backup')->weekly();
|
|
$schedule->command('backup:clean')->daily();
|
|
$schedule->command('snipeit:upcoming-audits')->daily();
|
|
}
|
|
|
|
/**
|
|
* This method is required by Laravel to handle any console routes
|
|
* that are defined in routes/console.php.
|
|
*/
|
|
protected function commands()
|
|
{
|
|
require base_path('routes/console.php');
|
|
}
|
|
}
|