mirror of
https://github.com/pacnpal/thrillwiki_django_no_react.git
synced 2026-02-05 07:45:18 -05:00
feat: Implement email change cancellation, location search, and admin anomaly detection endpoints.
This commit is contained in:
@@ -34,4 +34,22 @@ urlpatterns = [
|
||||
views.CeleryTaskStatusView.as_view(),
|
||||
name="task_status",
|
||||
),
|
||||
# Anomaly Detection
|
||||
path(
|
||||
"anomalies/detect/",
|
||||
views.DetectAnomaliesView.as_view(),
|
||||
name="detect_anomalies",
|
||||
),
|
||||
# Metrics Collection
|
||||
path(
|
||||
"metrics/collect/",
|
||||
views.CollectMetricsView.as_view(),
|
||||
name="collect_metrics",
|
||||
),
|
||||
# Pipeline Integrity Scan
|
||||
path(
|
||||
"pipeline/integrity-scan/",
|
||||
views.PipelineIntegrityScanView.as_view(),
|
||||
name="pipeline_integrity_scan",
|
||||
),
|
||||
]
|
||||
|
||||
Reference in New Issue
Block a user