Strip healthcare packaging and Care integration from Queue.
Deploy Ladill Queue / deploy (push) Successful in 3m12s

Queue is general-purpose QMS only; Care runs its own native engine.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
isaacclad
2026-07-18 10:15:32 +00:00
co-authored by Cursor
parent b5ffa499b9
commit b208e59bd0
16 changed files with 123 additions and 501 deletions
+2 -2
View File
@@ -59,7 +59,7 @@ class SettingsBranchesTeamTest extends TestCase
'appointment_mode' => 'walk_in_only',
'industry' => 'retail',
'notifications_enabled' => '1',
'care_integration_enabled' => '1',
'frontdesk_integration_enabled' => '1',
])
->assertRedirect()
->assertSessionHas('success');
@@ -68,7 +68,7 @@ class SettingsBranchesTeamTest extends TestCase
$this->assertSame('Settings Org Updated', $this->organization->name);
$this->assertSame('Africa/Accra', $this->organization->timezone);
$this->assertSame('walk_in_only', data_get($this->organization->settings, 'appointment_mode'));
$this->assertTrue((bool) data_get($this->organization->settings, 'integrations.care_enabled'));
$this->assertTrue((bool) data_get($this->organization->settings, 'integrations.frontdesk_enabled'));
}
public function test_settings_page_does_not_nest_reinstall_form(): void