Upgrade vfc-vnflcm django version
[vfc/gvnfm/vnflcm.git] / lcm / lcm / jobs / urls.py
index 650d17e..b36550e 100644 (file)
 # 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<job_id>[0-9a-zA-Z_-]+)$', JobView.as_view()),
+]