1e51ef7def
- Konzept/, didaktik_geografie/, didaktik_simulation/, v2-modules/, v2-platform/ - 12 code-workspace-Files - STATUS-*.md - viele M/D/R-Änderungen an bereits getrackten Files - .gitignore verstärkt: **/.humaninput/, **/secret_keys.txt Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
17 lines
536 B
PHP
17 lines
536 B
PHP
<?php
|
|
declare(strict_types=1);
|
|
require_once __DIR__ . '/../lib/bootstrap.php';
|
|
|
|
v2_validate_method('GET');
|
|
v2_auth_require('any');
|
|
|
|
mock_log('GET /api/runtime-config', []);
|
|
|
|
v2_response_ok([
|
|
'heartbeat' => ['minIntervalS' => 10, 'maxIntervalS' => 30],
|
|
'stuck' => ['thresholdS' => 90],
|
|
'telemetry' => ['rateLimitPerS' => 1, 'eventCapPerSession' => 2000, 'retentionDays' => 30],
|
|
'auth' => ['tokenTTLs' => 3600, 'refreshWindowS' => 300],
|
|
'_mock' => 'Echte Plattform liest aus platform_config_v2-Tabelle.',
|
|
]);
|