feat: migrate parser data to source records
Some checks failed
CI/CD Pipeline / Quality Gate (push) Failing after 14s
CI/CD Pipeline / Build and Push Images (push) Has been skipped
CI/CD Pipeline / Deploy Dev in Dokploy (push) Has been skipped
CI/CD Pipeline / Internal Notify (push) Successful in 0s

This commit is contained in:
2026-05-19 20:21:31 +02:00
parent 1c7c7238be
commit b8a18d6da4
46 changed files with 2689 additions and 6179 deletions

View File

@@ -37,6 +37,19 @@ HEALTH_TAG = swagger_tag("Мониторинг", "monitoring")
JOBS_TAG = swagger_tag("Фоновые задачи", "background_jobs")
class DisabledEndpointView(APIView):
"""
Disabled API route kept only for stable URL reversing and stale clients.
DRF returns 405 for every HTTP method because the endpoint is intentionally
absent from the runtime API surface.
"""
authentication_classes = []
permission_classes = []
http_method_names: list[str] = []
class HealthCheckView(APIView):
"""
Комплексная проверка состояния системы.