feat(113): Platform Ops Runbooks — UX Polish (Filament-native, system theme, live scope) #137

Merged
ahmido merged 11 commits from 113-platform-ops-runbooks into dev 2026-02-27 01:11:26 +00:00
Showing only changes of commit 0e879be2cd - Show all commits

View File

@ -5,6 +5,7 @@
use App\Models\PlatformUser;
use App\Models\Tenant;
use App\Models\Workspace;
use App\Support\Auth\PlatformCapabilities;
use Illuminate\Database\Seeder;
use Illuminate\Support\Facades\Hash;
@ -31,8 +32,12 @@ public function run(): void
'name' => 'Platform Operator',
'password' => Hash::make('password'),
'capabilities' => [
'platform.access_system_panel',
'platform.use_break_glass',
PlatformCapabilities::ACCESS_SYSTEM_PANEL,
PlatformCapabilities::USE_BREAK_GLASS,
PlatformCapabilities::OPS_VIEW,
PlatformCapabilities::RUNBOOKS_VIEW,
PlatformCapabilities::RUNBOOKS_RUN,
PlatformCapabilities::RUNBOOKS_FINDINGS_LIFECYCLE_BACKFILL,
],
'is_active' => true,
],