Deploy Ladill Care / deploy (push) Successful in 38s
Schedule and start video visits via the Meet service API, persist join links on appointments, and propagate the shared copy-button component. Co-authored-by: Cursor <cursoragent@cursor.com>
17 lines
485 B
PHP
17 lines
485 B
PHP
<?php
|
|
|
|
return [
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Ladill Meet service
|
|
|--------------------------------------------------------------------------
|
|
| Video meetings at meet.ladill.com. Care schedules video visits via the
|
|
| service API (App\Services\Meet\MeetClient).
|
|
*/
|
|
|
|
'url' => rtrim((string) env('MEET_API_URL', 'https://meet.ladill.com/api/service/v1'), '/'),
|
|
'key' => env('MEET_API_KEY_CARE'),
|
|
|
|
];
|