summaryrefslogtreecommitdiffstats
path: root/dashboard/src/api/views.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/views.py
parentb55a6c39179813070bef63121965a4a045ac13ad (diff)
parentaebb690bd07460a9f61db36e46d79d502e7fc247 (diff)
Merge "Implement Notification Framework with Initial Email Support"
Diffstat (limited to 'dashboard/src/api/views.py')
-rw-r--r--dashboard/src/api/views.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/dashboard/src/api/views.py b/dashboard/src/api/views.py
index 84fa1b5..c16d57d 100644
--- a/dashboard/src/api/views.py
+++ b/dashboard/src/api/views.py
@@ -8,7 +8,7 @@
##############################################################################
-from django.contrib.auth.decorators import login_required
+from django.contrib.auth.decorators import login_required, user_passes_test
from django.shortcuts import redirect
from django.utils.decorators import method_decorator
from django.views import View
@@ -41,6 +41,9 @@ class ResourceStatusViewSet(viewsets.ModelViewSet):
queryset = ResourceStatus.objects.all()
serializer_class = ResourceStatusSerializer
+class NotifierViewSet(viewsets.ModelViewSet):
+ queryset = Notifier.objects.none()
+ serializer_class = NotifierSerializer
@method_decorator(login_required, name='dispatch')
class GenerateTokenView(View):