This commit is contained in:
Joakim Hellsén 2026-04-27 20:43:26 +02:00
commit a7a5b5c8ea
Signed by: Joakim Hellsén
SSH key fingerprint: SHA256:/9h/CsExpFp+PRhsfA0xznFx2CGfTT5R/kpuFfUgEQk
43 changed files with 5531 additions and 9 deletions

15
control_plane/urls.py Normal file
View file

@ -0,0 +1,15 @@
from django.urls import path
from control_plane.views import DeploymentDashboardHomeView
from control_plane.views import DeploymentDashboardView
from control_plane.views import DeploymentDetailView
from control_plane.views import DeploymentHealthView
app_name = "control_plane"
urlpatterns = [
path("", DeploymentDashboardHomeView.as_view(), name="deployment-home"),
path("deployments/", DeploymentDashboardView.as_view(), name="deployment-dashboard"),
path("deployments/<uuid:deployment_id>/", DeploymentDetailView.as_view(), name="deployment-detail"),
path("deployments/<uuid:deployment_id>/health/", DeploymentHealthView.as_view(), name="deployment-health"),
]