bb-plane-fork/apiserver/plane/app/views/error_404.py
2024-11-21 17:42:44 +05:30

6 lines
162 B
Python

# views.py
from django.http import JsonResponse
def custom_404_view(request, exception=None):
return JsonResponse({"error": "Page not found."}, status=404)