summaryrefslogtreecommitdiffstats
path: root/res/res/resources/urls.py
diff options
context:
space:
mode:
Diffstat (limited to 'res/res/resources/urls.py')
-rw-r--r--res/res/resources/urls.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/res/res/resources/urls.py b/res/res/resources/urls.py
index 5bcfb9a..e282e86 100644
--- a/res/res/resources/urls.py
+++ b/res/res/resources/urls.py
@@ -16,7 +16,6 @@ from django.conf.urls import url
from rest_framework.urlpatterns import format_suffix_patterns
from res.resources import views
-from res.resources.views import SwaggerJsonView
urlpatterns = [
url(r'^api/vnfres/v1/vnfs/(?P<vnfInstanceId>[0-9a-zA-Z\-\_]+)$', views.get_vnf, name='get_vnf'),
@@ -27,7 +26,6 @@ urlpatterns = [
url(r'^api/vnfres/v1/(?P<vnfInstanceId>[0-9a-zA-Z\-\_]+)/subnets$', views.get_subnets, name='get_subnets'),
url(r'^api/vnfres/v1/(?P<vnfInstanceId>[0-9a-zA-Z\-\_]+)/cps$', views.getCps.as_view(), name='get_cps'),
url(r'^api/vnfres/v1/(?P<vnfInstanceId>[0-9a-zA-Z\-\_]+)/volumes$', views.getVolumes.as_view(), name='get_volumes'),
- url(r'^api/vnfres/v1/swagger.json$', SwaggerJsonView.as_view()),
]
urlpatterns = format_suffix_patterns(urlpatterns)