Source code for pushnotifications.views

"""Views provided by the pushnotifications package"""
from django.contrib.admin.views.decorators import staff_member_required
from django.contrib.auth.decorators import permission_required
from django.shortcuts import get_object_or_404, redirect

from pushnotifications.models import Message


[docs]@staff_member_required @permission_required("pushnotifications.change_message") def admin_send(request, pk): """ Send the provided push notification :param request: the request :param pk: key of the message :return: redirect 304 to the overview of notifications """ message = get_object_or_404(Message, pk=pk) message.send() return redirect("admin:pushnotifications_message_changelist")