ForestAdmin/django-forest

View on GitHub
django_forest/views/index.py

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
from django.http import HttpResponse
from django.views.generic import View


class IndexView(View):
    def get(self, request, *args, **kwargs):
        return HttpResponse(status=204)