## Summary Removes the XLVask autopilot / automation / MiniMax / OpenAI pipeline and the related module config, CLI, cron, and migration scaffolding. The Selvvask view (Superuser -> Fakturaer -> Periode -> Selvvask) is reduced to a single read-only listing of usage logs plus operator-driven ignore / unignore / accept / reject endpoints gated on the `review_xlvask_usage_order` permission. See `inventory/self-serve-inventory.md` for the full surface map. ## Test plan - [x] `vendor/bin/pest --testsuite=Unit` -> **1266 passed**, 1 unrelated pre-existing failure (`BirdControlPlaneActivationTest`, needs `PLENO_REPO_ROOT_FOR_TESTS`). - [x] `php -l` on every modified PHP file -> no syntax errors. - [x] Grep validation -> zero production-code references to removed surfaces (`xlvask_autopilot_service`, `xlvask_automation_service`, `xlvask_automation_policy_service`, `EnsureXLVaskAutomationSchema`, `runScheduledAutomationIfReady`, `processAutopilotQueue`, `MiniMax`, `minimax`, ...). - [ ] Qodana + Tests workflows green on this PR. Co-authored-by: openhands <openhands@all-hands.dev> --------- Co-authored-by: openhands <openhands@all-hands.dev>
38 lines
936 B
PHP
38 lines
936 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
return [
|
|
'openapi_operations' => [
|
|
'POST /auth/login',
|
|
'GET /auth/session',
|
|
'GET /account/deletion',
|
|
'POST /account/deletion',
|
|
'GET /auth/logout',
|
|
'GET /departments',
|
|
'POST /departments',
|
|
'PUT /departments',
|
|
'GET /departments/categories',
|
|
'GET /orders',
|
|
'POST /orders',
|
|
'PUT /orders',
|
|
'PUT /numberplatescanners',
|
|
'DELETE /orders',
|
|
'GET /branding',
|
|
'POST /branding',
|
|
'PUT /branding',
|
|
'GET /superuser/departments/{id}/overview',
|
|
'PUT /superuser/department/branding',
|
|
'POST /bird/voice/calls/webhook/inbound',
|
|
],
|
|
'manual_operations' => [
|
|
'GET /ping',
|
|
'PUT /order',
|
|
'GET /orders/reference-suggestions',
|
|
'POST /modules/scanner/lpr',
|
|
],
|
|
'happy_only_operations' => [
|
|
'GET /ping',
|
|
],
|
|
];
|