add global promotion deadline + fix grane medal

This commit is contained in:
xiaomlove
2022-07-09 18:06:09 +08:00
parent 50759b1cf3
commit afa8cdce99
40 changed files with 1936 additions and 20 deletions

View File

@@ -0,0 +1,26 @@
<?php
namespace App\Filament\Resources\System\TorrentStateResource\Pages;
use App\Filament\Resources\System\TorrentStateResource;
use Filament\Pages\Actions;
use Filament\Resources\Pages\ManageRecords;
use Nexus\Database\NexusDB;
class ManageTorrentStates extends ManageRecords
{
protected static string $resource = TorrentStateResource::class;
protected function getActions(): array
{
return [
// Actions\CreateAction::make(),
];
}
protected function isTablePaginationEnabled(): bool
{
return false;
}
}