v0.9.0: no-MAC device tracking, IP-change dashboard, extended search
This commit is contained in:
@@ -1,8 +1,17 @@
|
||||
<?php
|
||||
|
||||
use App\Models\NetworkSegment;
|
||||
use Illuminate\Foundation\Inspiring;
|
||||
use Illuminate\Support\Facades\Artisan;
|
||||
use Illuminate\Support\Facades\Schedule;
|
||||
|
||||
Artisan::command('inspire', function () {
|
||||
$this->comment(Inspiring::quote());
|
||||
})->purpose('Display an inspiring quote');
|
||||
|
||||
// Netzwerk-Scans automatisch ausführen
|
||||
// Der Scheduler prüft jede Minute ob ein Segment fällig ist
|
||||
Schedule::command('network:scan')
|
||||
->everyMinute()
|
||||
->withoutOverlapping()
|
||||
->runInBackground();
|
||||
|
||||
Reference in New Issue
Block a user