Small fix o test view

This commit is contained in:
Alvaro Mariano 2023-06-22 18:30:23 -03:00
parent ec38ad0ecf
commit 041281bced

View file

@ -3,6 +3,7 @@
import random
from django.contrib.auth.decorators import login_required
from django.http import HttpResponse
from django.shortcuts import render
from notifications.signals import notify
@ -29,3 +30,5 @@ def make_notification(request):
notify.send(sender=request.user, recipient=request.user,
verb='you asked for a notification - you are ' + the_notification)
return HttpResponse()