I went through Django REST Swagger 2.1.2 documentation. When I tried with class based views, it was working fine.
But i did not find any reference on how to enable swagger for function based views as shown below:
@api_view(['GET', 'POST'])
def app_info(request):
...
return response
Most of my views.py
is filled with function based views, just like above.
Any help on how to enable the same will greatly appreciated. Thanks!
I am using Django: 1.8; Django REST Swagger: 2.1.2; DRF: 3.6.2