X-Git-Url: https://gerrit.onap.org/r/gitweb?a=blobdiff_plain;f=lcm%2Flcm%2Fjobs%2Furls.py;h=b36550e206ac1a251fe2e6ea646e4de7076a1b83;hb=refs%2Fchanges%2F77%2F29077%2F1;hp=650d17ec788027ac5cbd4ced9e3cbf87d9678b9a;hpb=01da50ffb906d22ed408962c63fcf04309fe90eb;p=vfc%2Fgvnfm%2Fvnflcm.git diff --git a/lcm/lcm/jobs/urls.py b/lcm/lcm/jobs/urls.py index 650d17ec..b36550e2 100644 --- a/lcm/lcm/jobs/urls.py +++ b/lcm/lcm/jobs/urls.py @@ -10,4 +10,12 @@ # distributed under the License is distributed on an "AS IS" BASIS, # 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. \ No newline at end of file +# limitations under the License. + +from django.conf.urls import url + +from lcm.jobs.views import JobView + +urlpatterns = [ + url(r'^api/vnflcm/v1/vnf_lc_ops/(?P[0-9a-zA-Z_-]+)$', JobView.as_view()), +]