Fix stuck recording processing and add invoice service API test.
Deploy Ladill Meet / deploy (push) Successful in 52s

Capture stage spotlight video for browser recordings, fail incomplete uploads, allow post-session host uploads, and expire stale processing recordings automatically.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
isaacclad
2026-07-03 22:54:26 +00:00
co-authored by Cursor
parent 94a7906188
commit 4af53f9374
11 changed files with 395 additions and 18 deletions
+16
View File
@@ -497,6 +497,22 @@ class MeetWebTest extends TestCase
->assertJsonPath('room.organization_id', $this->organization->id);
}
public function test_service_api_can_create_room_for_invoice_app(): void
{
\Illuminate\Support\Facades\Http::fake();
config(['meet.service_api_keys.invoice' => 'test-invoice-key']);
$this->postJson('/api/service/v1/rooms', [
'owner_ref' => $this->user->public_id,
'host_user_ref' => $this->user->public_id,
'title' => 'Invoice review',
'scheduled_at' => now()->addDay()->toIso8601String(),
'source' => ['app' => 'invoice', 'entity_type' => 'invoice', 'entity_id' => '99'],
], ['Authorization' => 'Bearer test-invoice-key'])
->assertCreated()
->assertJsonPath('room.title', 'Invoice review');
}
public function test_service_api_can_create_town_hall_room(): void
{
\Illuminate\Support\Facades\Http::fake();