We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b197eac commit 8568ae8Copy full SHA for 8568ae8
manage_breast_screening/notifications/views.py
@@ -2,6 +2,7 @@
2
3
from django.contrib.auth.decorators import login_not_required
4
from django.http import JsonResponse
5
+from django.views.decorators.csrf import csrf_exempt
6
from django.views.decorators.http import require_http_methods
7
8
from manage_breast_screening.core.decorators import (
@@ -16,6 +17,7 @@
16
17
@require_http_methods(["POST"])
18
@login_not_required
19
@basic_auth_exempt
20
+@csrf_exempt
21
def create_message_status(request):
22
valid, message = RequestValidator(request).valid()
23
0 commit comments