WIP
This commit is contained in:
parent
e70a0584c9
commit
a7a5b5c8ea
43 changed files with 5531 additions and 9 deletions
15
control_plane/urls.py
Normal file
15
control_plane/urls.py
Normal 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"),
|
||||
]
|
||||
Loading…
Add table
Add a link
Reference in a new issue