8 lines
244 B
Python
8 lines
244 B
Python
from django.http import JsonResponse
|
|
from django.views.decorators.http import require_http_methods
|
|
|
|
|
|
@require_http_methods(["GET"])
|
|
def health(request):
|
|
return JsonResponse({"workflow_type": "application_form_fill", "status": "available"})
|