Route webinar and conference registration through Ladill Events.
Deploy Ladill Meet / deploy (push) Successful in 1m26s
Deploy Ladill Meet / deploy (push) Successful in 1m26s
Add Events linking UI and service client, remove Meet-native registration and invitation flows for these room types, and redirect attendees to Events registration when joining. Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
@@ -630,23 +630,14 @@ class MeetWebTest extends TestCase
|
||||
]);
|
||||
}
|
||||
|
||||
public function test_webinar_registration_flow(): void
|
||||
public function test_webinar_registration_redirects_without_events_link(): void
|
||||
{
|
||||
$room = $this->createRoom([
|
||||
'type' => 'webinar',
|
||||
'settings' => array_merge(config('meet.default_settings'), ['webinar_auto_approve' => true]),
|
||||
]);
|
||||
$room = $this->createRoom(['type' => 'webinar']);
|
||||
|
||||
$this->post('/w/'.$room->uuid.'/register', [
|
||||
'email' => 'attendee@example.com',
|
||||
'display_name' => 'Attendee One',
|
||||
])->assertOk();
|
||||
|
||||
$this->assertDatabaseHas('meet_webinar_registrations', [
|
||||
'room_id' => $room->id,
|
||||
'email' => 'attendee@example.com',
|
||||
'status' => 'approved',
|
||||
]);
|
||||
])->assertRedirect(route('meet.webinars.show', $room));
|
||||
}
|
||||
|
||||
public function test_host_can_create_webinar_room(): void
|
||||
|
||||
Reference in New Issue
Block a user