From c1541a79cab0a887914852e6c46fd6d724bf97e1 Mon Sep 17 00:00:00 2001 From: Laurent Date: Mon, 15 Jan 2024 13:44:12 +0100 Subject: [PATCH] Fix missing import --- subscriptions/views.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/subscriptions/views.py b/subscriptions/views.py index e96d00b..55d4081 100644 --- a/subscriptions/views.py +++ b/subscriptions/views.py @@ -1,7 +1,8 @@ from django.shortcuts import render from django.http import HttpResponse, JsonResponse -import json from django.views.decorators.csrf import csrf_exempt +from .models import ASSNotification +import json def index(request): return HttpResponse("Hello, world. You're at the subs index.")