summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorying.yunlong <ying.yunlong@zte.com.cn>2018-02-01 09:46:03 +0800
committerying.yunlong <ying.yunlong@zte.com.cn>2018-02-01 09:46:03 +0800
commit262a2b0a4167f9e0d11430d1c7f41a7f1d373626 (patch)
tree78d3dd907cc4c2fb49ed3b52e48d9104b098077d
parent16cbd70f794417dc5afd96e2eb066be4fa87730d (diff)
Remove vfc-vnfmgr redundant interfaces
Change-Id: I03f7300dc4d0394795d011afdf663cb4e9675bfd Issue-ID: VFC-670 Signed-off-by: ying.yunlong <ying.yunlong@zte.com.cn>
-rw-r--r--mgr/mgr/swagger/urls.py16
1 files changed, 7 insertions, 9 deletions
diff --git a/mgr/mgr/swagger/urls.py b/mgr/mgr/swagger/urls.py
index 2dba098..ee8b148 100644
--- a/mgr/mgr/swagger/urls.py
+++ b/mgr/mgr/swagger/urls.py
@@ -18,13 +18,14 @@ from drf_yasg.views import get_schema_view
from rest_framework import permissions
swagger_info = openapi.Info(
- title="vnfmgr API",
+ title="vfc-vnfmgr API",
default_version='v1',
description="""
-The `swagger-ui` view can be found [here](/api/vnfmgr/v1/cached/swagger).
-The `ReDoc` view can be found [here](/api/vnfmgr/v1/cached/redoc).
-The swagger YAML document can be found [here](/api/vnfmgr/v1/cached/swagger.yaml)."""
+The `swagger-ui` view can be found [here](/api/vnfmgr/v1/swagger).
+The `ReDoc` view can be found [here](/api/vnfmgr/v1/redoc).
+The swagger YAML document can be found [here](/api/vnfmgr/v1/swagger.yaml).
+The swagger JSON document can be found [here](/api/vnfmgr/v1/swagger.json)."""
)
SchemaView = get_schema_view(
@@ -36,9 +37,6 @@ SchemaView = get_schema_view(
urlpatterns = [
# url(r'^api/vnfmgr/v1/swagger.json$', views.SwaggerView.as_view()),
url(r'^api/vnfmgr/v1/swagger(?P<format>.json|.yaml)$', SchemaView.without_ui(cache_timeout=0), name='schema-json'),
- url(r'^api/vnfmgr/v1/swagger/$', SchemaView.with_ui('swagger', cache_timeout=0), name='schema-swagger-ui'),
- url(r'^api/vnfmgr/v1/redoc/$', SchemaView.with_ui('redoc', cache_timeout=0), name='schema-redoc'),
- url(r'^api/vnfmgr/v1/cached/swagger(?P<format>.json|.yaml)$', SchemaView.without_ui(cache_timeout=None), name='cschema-json'),
- url(r'^api/vnfmgr/v1/cached/swagger/$', SchemaView.with_ui('swagger', cache_timeout=None), name='cschema-swagger-ui'),
- url(r'^api/vnfmgr/v1/cached/redoc/$', SchemaView.with_ui('redoc', cache_timeout=None), name='cschema-redoc'),
+ url(r'^api/vnfmgr/v1/swagger$', SchemaView.with_ui('swagger', cache_timeout=0), name='schema-swagger-ui'),
+ url(r'^api/vnfmgr/v1/redoc$', SchemaView.with_ui('redoc', cache_timeout=0), name='schema-redoc')
]