aboutsummaryrefslogtreecommitdiffstats
path: root/catalog/packages/urls.py
diff options
context:
space:
mode:
authorhongyuzhao <zhao.hongyu@zte.com.cn>2019-12-14 13:29:36 +0800
committerhongyuzhao <zhao.hongyu@zte.com.cn>2019-12-14 13:56:40 +0800
commit0409420992ea31df6cbaa28e5cbd0ff6ecd03b36 (patch)
treee3fc8e4618c2dd4895d8130b679d27605a660e85 /catalog/packages/urls.py
parent5f632e314dcb48bcf30596ef2a2c0af60e836c3c (diff)
Modify notification endpoint interface definition in swagger
Change-Id: I4e31d2ad533a5971e748931240e4eac9e43ed96d Issue-ID: MODELING-288 Signed-off-by: hongyuzhao <zhao.hongyu@zte.com.cn>
Diffstat (limited to 'catalog/packages/urls.py')
-rw-r--r--catalog/packages/urls.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/catalog/packages/urls.py b/catalog/packages/urls.py
index 26a5fa9..410df80 100644
--- a/catalog/packages/urls.py
+++ b/catalog/packages/urls.py
@@ -62,7 +62,7 @@ urlpatterns = [
url(r'^api/vnfpkgm/v1/subscriptions/(?P<subscriptionId>[0-9a-zA-Z\-\_]+)$', QueryTerminateSubscriptionView.as_view(), name='subscriptions_query_terminate'),
url(r'^api/vnfpkgm/v1/vnf_packages/(?P<vnfPkgId>[0-9a-zA-Z\-\_]+)/artifacts/(?P<artifactPath>[0-9a-zA-Z\-\_]+)$', FetchVnfPkgmArtifactsView.as_view(), name="fetch_vnf_artifacts"),
url(r'^URI-is-provided-by-the-client-when-creating-the-subscription-VnfPackageOnboardingNotification$', PkgOnboardingNotificationView.as_view()),
- url(r'^URI-is-provided-by-the-client-when-creating-the-sbuscription-VnfPackageChangeNotification$', PkgChangeNotificationView.as_view()),
+ url(r'^URI-is-provided-by-the-client-when-creating-the-subscription-VnfPackageChangeNotification$', PkgChangeNotificationView.as_view()),
# health check
url(r'^api/vnfpkgm/v1/health_check$', HealthCheckView.as_view()),