X-Git-Url: https://gerrit.onap.org/r/gitweb?a=blobdiff_plain;f=lcm%2Flcm%2Fjobs%2Furls.py;h=33eec2017ca3fa4e183fda89cf60f9fde64cc609;hb=9e5deee5beb4f0c4c70be69932a30e72aad97373;hp=f2ab2bbd35a5547ecaccbb11ae8b2dcfa4c1f289;hpb=cc8e51bd402ec135d7bfab7dcafedbdb47a95da1;p=vfc%2Fgvnfm%2Fvnflcm.git diff --git a/lcm/lcm/jobs/urls.py b/lcm/lcm/jobs/urls.py index f2ab2bbd..33eec201 100644 --- a/lcm/lcm/jobs/urls.py +++ b/lcm/lcm/jobs/urls.py @@ -11,13 +11,14 @@ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. + from django.conf.urls import patterns, url from rest_framework.urlpatterns import format_suffix_patterns from lcm.jobs.views import JobView urlpatterns = patterns('', - url(r'^openoapi/vnflcm/v1/vnf_lc_ops/(?P[0-9a-zA-Z_-]+)$', JobView.as_view()), + url(r'^api/vnflcm/v1/vnf_lc_ops/(?P[0-9a-zA-Z_-]+)$', JobView.as_view()), ) urlpatterns = format_suffix_patterns(urlpatterns)