12 lines
320 B
Python
12 lines
320 B
Python
"""passbook outposts urls"""
|
|
from django.urls import path
|
|
|
|
from passbook.outposts.views import KubernetesManifestView, SetupView
|
|
|
|
urlpatterns = [
|
|
path(
|
|
"<uuid:outpost_pk>/k8s/", KubernetesManifestView.as_view(), name="k8s-manifest"
|
|
),
|
|
path("<uuid:outpost_pk>/", SetupView.as_view(), name="setup"),
|
|
]
|