15 lines
683 B
Python
15 lines
683 B
Python
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"),
|
|
]
|