summaryrefslogtreecommitdiffstats
path: root/dashboard/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
commit48d41db0824f86b0594088303c792633f977719d (patch)
treeee3fc9e3f8898081d3e82ba6a02bc5c4bf4d0ca7 /dashboard/src/api/urls.py
parentb55a6c39179813070bef63121965a4a045ac13ad (diff)
parentaebb690bd07460a9f61db36e46d79d502e7fc247 (diff)
Merge "Implement Notification Framework with Initial Email Support"
Diffstat (limited to 'dashboard/src/api/urls.py')
-rw-r--r--dashboard/src/api/urls.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/dashboard/src/api/urls.py b/dashboard/src/api/urls.py
index a4a4b2f..71cd3ef 100644
--- a/dashboard/src/api/urls.py
+++ b/dashboard/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
+]