die tenant admin oauth authentifizierung wurde implementiert und funktioniert jetzt. Zudem wurde das marketing frontend dashboard implementiert.

This commit is contained in:
Codex Agent
2025-11-04 16:14:17 +01:00
parent 92e64c361a
commit fe380689fb
63 changed files with 4239 additions and 1142 deletions

View File

@@ -133,6 +133,8 @@ class EventListTest extends TenantTestCase
$matchingEvent = collect($response->json('data'))->firstWhere('id', $event->id);
$this->assertNotNull($matchingEvent, 'Event should still be returned even if package record is missing.');
$this->assertNull($matchingEvent['package'], 'Package payload should be null when relation cannot be resolved.');
$this->assertIsArray($matchingEvent['package'], 'Package payload should provide fallback data when relation is missing.');
$this->assertSame($package->id, $matchingEvent['package']['id']);
$this->assertSame((string) $package->price, $matchingEvent['package']['price']);
}
}