From 262a2b0a4167f9e0d11430d1c7f41a7f1d373626 Mon Sep 17 00:00:00 2001 From: "ying.yunlong" Date: Thu, 1 Feb 2018 09:46:03 +0800 Subject: [PATCH] Remove vfc-vnfmgr redundant interfaces Change-Id: I03f7300dc4d0394795d011afdf663cb4e9675bfd Issue-ID: VFC-670 Signed-off-by: ying.yunlong --- mgr/mgr/swagger/urls.py | 16 +++++++--------- 1 file 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.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.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') ] -- 2.16.6