X-Git-Url: https://gerrit.onap.org/r/gitweb?a=blobdiff_plain;f=lcm%2Fswagger%2Fviews.py;h=5034905c830ed9a540229b18a45372e380545f8c;hb=4e44bbcf4bca14060fb2c9ba704a16527e675c24;hp=fdef8aedb7724b17a4f904ed4e0ec0b2287bc5b8;hpb=d93dd62d48a6e8062a508c7252464afee800e8c4;p=vfc%2Fnfvo%2Flcm.git diff --git a/lcm/swagger/views.py b/lcm/swagger/views.py index fdef8aed..5034905c 100644 --- a/lcm/swagger/views.py +++ b/lcm/swagger/views.py @@ -14,20 +14,16 @@ import json import logging import os -import traceback -from rest_framework import status from rest_framework.response import Response from rest_framework.views import APIView - logger = logging.getLogger(__name__) class SwaggerJsonView(APIView): def get(self, request): - json_file = os.path.join(os.path.dirname(__file__), 'vfc.nslcm.swagger.json') f = open(json_file) json_data = json.JSONDecoder().decode(f.read()) @@ -49,7 +45,6 @@ class SwaggerJsonView(APIView): json_data["paths"].update(json_data_temp["paths"]) json_data["definitions"].update(json_data_temp["definitions"]) - json_file = os.path.join(os.path.dirname(__file__), 'vfc.sfclcm.swagger.json') f = open(json_file) json_data_temp = json.JSONDecoder().decode(f.read()) @@ -58,18 +53,13 @@ class SwaggerJsonView(APIView): json_data["paths"].update(json_data_temp["paths"]) json_data["definitions"].update(json_data_temp["definitions"]) - json_file = os.path.join(os.path.dirname(__file__), 'vfc.others.swagger.json') f = open(json_file) json_data_temp = json.JSONDecoder().decode(f.read()) f.close() - json_data_jobtemp=json_data["paths"]["/jobs/{jobId}"] + json_data_jobtemp = json_data["paths"]["/jobs/{jobId}"] json_data["paths"].update(json_data_temp["paths"]) json_data["paths"]["/jobs/{jobId}"].update(json_data_jobtemp) json_data["definitions"].update(json_data_temp["definitions"]) - return Response(json_data) - - -