aboutsummaryrefslogtreecommitdiffstats
path: root/src/api/urls.py
diff options
context:
space:
mode:
authorJack Morgan <jack.morgan@intel.com>2018-01-08 23:56:29 +0000
committerGerrit Code Review <gerrit@opnfv.org>2018-01-08 23:56:29 +0000
commitffc10727531acbb52f87c52f948e0158a18c65c9 (patch)
tree62905b84bce04e7ef1776888131e6051ba9500f2 /src/api/urls.py
parent6173050b6bfc3d96d3056c5de4c927f1b461fe6e (diff)
parenteb7cb88c62feae0b412f4ecc9a5e62c3f7bdc138 (diff)
Merge "Implement Notification Framework with Initial Email Support"
Diffstat (limited to 'src/api/urls.py')
-rw-r--r--src/api/urls.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/api/urls.py b/src/api/urls.py
index a4a4b2f..71cd3ef 100644
--- a/src/api/urls.py
+++ b/src/api/urls.py
@@ -33,8 +33,9 @@ router.register(r'resources', ResourceViewSet)
router.register(r'servers', ServerViewSet)
router.register(r'bookings', BookingViewSet)
router.register(r'resource_status', ResourceStatusViewSet)
+router.register(r'notifier', NotifierViewSet)
urlpatterns = [
url(r'^', include(router.urls)),
url(r'^token$', GenerateTokenView.as_view(), name='generate_token'),
-] \ No newline at end of file
+]