fix logic and tests, update docker CI file

This commit is contained in:
root
2026-03-09 15:58:44 -04:00
parent 1cb3573d4b
commit 79e44fe037
188 changed files with 1776 additions and 524 deletions
+25
View File
@@ -0,0 +1,25 @@
<?php
namespace App\Controllers\View;
use App\Controllers\BaseController;
class DocsController extends BaseController
{
public function swagger()
{
// Present both specs in a Swagger UI dropdown
$specs = [
[
'name' => 'Administrator API',
'url' => '/docs/openapi_administrator_controller.yaml',
],
[
'name' => 'Parent API',
'url' => '/docs/openapi_parent_controller.yaml',
],
];
return view('swagger_ui', ['specs' => $specs]);
}
}