migrating tests (DatabaseUser, Firewall and Logs)

This commit is contained in:
Saeed Vaziry
2024-10-09 23:32:52 +02:00
parent 0007e6f00a
commit 93cee92568
12 changed files with 214 additions and 56 deletions

View File

@ -26,6 +26,8 @@ class LogsList extends Widget
public ?string $label = '';
public bool $remote = false;
protected $listeners = ['$refresh'];
protected function getTableQuery(): Builder
@ -36,7 +38,8 @@ protected function getTableQuery(): Builder
if ($this->site) {
$query->where('site_id', $this->site->id);
}
});
})
->where('is_remote', $this->remote);
}
protected function getTableColumns(): array