Добавил журнал ошибок

This commit is contained in:
2025-12-15 17:54:26 +03:00
parent 480bb60855
commit 1a953cc558
12 changed files with 1162 additions and 7 deletions

View File

@@ -85,6 +85,13 @@ from .source_requests import (
SourceRequestAPIView,
SourceRequestDetailAPIView,
)
from .errors_report import (
ErrorsReportView,
ErrorsReportAPIView,
ErrorsReportSaveAPIView,
ErrorsReportDeleteAPIView,
WeeklyHoursAPIView,
)
__all__ = [
# Base
@@ -170,4 +177,10 @@ __all__ = [
'SourceRequestDeleteView',
'SourceRequestAPIView',
'SourceRequestDetailAPIView',
# Errors Report
'ErrorsReportView',
'ErrorsReportAPIView',
'ErrorsReportSaveAPIView',
'ErrorsReportDeleteAPIView',
'WeeklyHoursAPIView',
]