Fix stuck recording processing and add invoice service API test.
Deploy Ladill Meet / deploy (push) Successful in 52s
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:
@@ -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();
|
||||
|
||||
Reference in New Issue
Block a user