Register ambulance specialty module in the Care catalog.
Deploy Ladill Care / deploy (push) Successful in 28s

The suite landed without the catalog entry after a parallel Child Welfare merge; restore it so activation, demo flags, and departments work.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
isaacclad
2026-07-19 22:38:24 +00:00
co-authored by Cursor
parent c0e5d8ef00
commit 55a1288d30
+15
View File
@@ -362,4 +362,19 @@ return [
// Prefer multi-word / CWC stems — do not use bare "child" (steals pediatrics). // Prefer multi-word / CWC stems — do not use bare "child" (steals pediatrics).
'specialist_keywords' => ['child welfare', 'cwc', 'welfare clinic', 'well baby', 'well-child'], 'specialist_keywords' => ['child welfare', 'cwc', 'welfare clinic', 'well baby', 'well-child'],
], ],
'ambulance' => [
'label' => 'Ambulance',
'description' => 'EMS / ambulance clinic workflow: dispatch, scene triage, en-route care, and handover.',
'department_type' => 'ambulance',
'department_name' => 'Ambulance',
'queue_name' => 'Ambulance',
'queue_prefix' => 'AMB',
'nav_label' => 'Ambulance',
'icon' => 'truck',
// Avoid ED stems (emergency, casualty, trauma, er, a&e) — those belong to emergency.
'queue_keywords' => ['ambulance', 'ems', 'paramedic', 'prehospital', 'ambulance service'],
'access' => 'general',
'roles' => ['doctor', 'nurse', 'receptionist'],
'specialist_keywords' => ['ambulance', 'ems', 'paramedic', 'prehospital'],
],
]; ];