Save workspace changes

This commit is contained in:
2026-04-18 17:02:56 +02:00
parent f02ea9a711
commit 87d60af5a9
4220 changed files with 1388603 additions and 1554 deletions

View File

@@ -53,3 +53,13 @@ it('allows complete onboarding user to access profile and upload', function () {
->get('/upload')
->assertOk();
});
it('allows legacy users with null onboarding step to continue without setup redirect', function () {
$user = User::factory()->create([
'onboarding_step' => null,
]);
$this->actingAs($user)
->get('/upload')
->assertOk();
});