36 lines
869 B
PHP
36 lines
869 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
return [
|
|
'openapi_operations' => [
|
|
'POST /auth/login',
|
|
'GET /auth/session',
|
|
'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',
|
|
],
|
|
];
|