remove codeigniter

This commit is contained in:
root
2026-06-04 02:41:08 -04:00
parent 4e33882ac7
commit b4e6ac03c5
180 changed files with 457 additions and 2186 deletions
@@ -19,7 +19,7 @@ class HealthController extends BaseApiController
$payload = $this->service->check();
$status = $payload['ok'] ? Response::HTTP_OK : Response::HTTP_SERVICE_UNAVAILABLE;
// CodeIgniter admin/API health returns a flat JSON body (no Laravel success envelope).
// legacy admin/API health returns a flat JSON body (no Laravel success envelope).
return response()->json($payload, $status);
}
}