Implements workspace-scoped managed tenant onboarding wizard (Filament v5 / Livewire v4) with strict RBAC (404/403 semantics), resumable sessions, provider connection selection/creation, verification OperationRun, and optional bootstrap. Removes legacy onboarding entrypoints and adds Pest coverage + spec artifacts (073).
9 lines
168 B
PHP
9 lines
168 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
it('redirects /admin/new to /admin/login for guests', function (): void {
|
|
$this->get('/admin/new')
|
|
->assertNotFound();
|
|
});
|