From b4b045c3cb1e38aa12dee17cce7bacbb6c24ea58 Mon Sep 17 00:00:00 2001 From: Scott Baker Date: Wed, 29 Oct 2014 10:06:16 -0700 Subject: [PATCH] add slicedeployments --- planetstack/planetstack/urls.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/planetstack/planetstack/urls.py b/planetstack/planetstack/urls.py index a6496e5..125e6f9 100644 --- a/planetstack/planetstack/urls.py +++ b/planetstack/planetstack/urls.py @@ -116,6 +116,9 @@ urlpatterns = patterns('', url(r'^plstackapi/slice_memberships/$', SlicePrivilegeList.as_view(), name='sliceprivilege-list'), url(r'^plstackapi/slice_memberships/(?P[0-9]+)/$', SlicePrivilegeDetail.as_view(), name='sliceprivilege-detail'), + + url(r'^plstackapi/slice_deployments/$', SliceDeploymentsList.as_view(), name='slicedeployments-list'), + url(r'^plstackapi/slice_deployments/(?P[0-9]+)/$', SliceDeploymentsDetail.as_view(), name='slicedeployments-detail'), url(r'^plstackapi/slivers/$', SliverList.as_view(), name='sliver-list'), url(r'^plstackapi/slivers/(?P[a-zA-Z0-9_\-]+)/$', SliverDetail.as_view(), name='sliver-detail'), -- 2.47.0