feat: migrate parser data to source records
This commit is contained in:
@@ -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):
|
||||
"""
|
||||
Комплексная проверка состояния системы.
|
||||
|
||||
Reference in New Issue
Block a user