feat(api): add application settings to application endpoints

This commit is contained in:
Andras Bacsai
2026-07-14 13:44:45 +02:00
parent 99e255a572
commit 34e6a6dd5d
8 changed files with 1594 additions and 12 deletions
+1
View File
@@ -111,6 +111,7 @@ use Symfony\Component\Yaml\Yaml;
'is_http_basic_auth_enabled' => ['type' => 'boolean', 'description' => 'HTTP Basic Authentication enabled.'],
'http_basic_auth_username' => ['type' => 'string', 'nullable' => true, 'description' => 'Username for HTTP Basic Authentication'],
'http_basic_auth_password' => ['type' => 'string', 'nullable' => true, 'description' => 'Password for HTTP Basic Authentication'],
'settings' => new OA\Property(ref: '#/components/schemas/ApplicationSetting'),
]
)]